Part of the new audiolevel filter uses code written by Steve Harris, but he is incommunicado - mentioned on linux-audio-dev mailing list as well. So, I decided to keep it GPLv2 instead of LGPL and to put it into the normalize module, which is also GPL, audio-related, and not dependent on external libs.
---------- Forwarded message ---------- From: Mail Delivery Subsystem <[email protected]> Date: Mon, Nov 12, 2012 at 6:52 PM Subject: Delivery Status Notification (Failure) To: [email protected] Delivery to the following recipient failed permanently: [email protected] Technical details of permanent failure: DNS Error: Domain name not found ----- Original message ----- DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; bh=VlFqIcYrh5KviDybnP2oNOCwXFqeTmgZjUyAbppGSl8=; b=FK7OtVd+ArGa90QU+YXTLEBqRBy2PqY9/DhvgWtm1ofibNVTUFT/tJBw66963IqZ+5 NJ/khKvRSNhA3EapYn70bxyyqkRH9xudsJd0muFXOz34S7IBoOZcGtc1c2QjG0PhZKe5 y+gXumCzUDVXBYIJlZbLLC/2eHuhLzM1Qs7gJuTn+96jnuTrTXBF+veN5TYAM/dwFDH6 WjGBXVsFGBud2xmt9unwlYdKo4RpyImRO7ORsfZzhABeOFZHYX4LR1IEs+KVYAFiD5x6 9Pu7roAx/iCfprHjfcPjfDBu1qhklGqvNU70wzhFpvf/wFfKyetrZ95UP6r8W0Mbgvwc fpAQ== MIME-Version: 1.0 Received: by 10.52.34.37 with SMTP id w5mr10898537vdi.86.1352504756478; Fri, 09 Nov 2012 15:45:56 -0800 (PST) Sender: [email protected] Received: by 10.58.114.194 with HTTP; Fri, 9 Nov 2012 15:45:56 -0800 (PST) Date: Fri, 9 Nov 2012 15:45:56 -0800 X-Google-Sender-Auth: HvbyfB0Zcff-eoo0a2yc3A8NVUI Message-ID: <CABBVo1=MrqZ0rTC72OjMEDnrkoDVkk2tUR-=kjsrnxenv+f...@mail.gmail.com> Subject: permission to use IEC_Scale() function in LGPL MLT code From: Dan Dennedy <[email protected]> To: [email protected] Content-Type: text/plain; charset=ISO-8859-1 Hi Steve, I am lead developer of MLT (http://www.mltframework.org), which is the engine for a few open source non-linear video editors. I would like to use your IEC_Scale() function I found in meterbridge in a portion of the code that is LGPL. I will, of course, attribute you as the source of that function within my source code. Is that OK with you? Here is the full function I refer to. static inline double IEC_Scale(double dB) { double fScale = 1.0f; if (dB < -70.0f) fScale = 0.0f; else if (dB < -60.0f) fScale = (dB + 70.0f) * 0.0025f; else if (dB < -50.0f) fScale = (dB + 60.0f) * 0.005f + 0.025f; else if (dB < -40.0) fScale = (dB + 50.0f) * 0.0075f + 0.075f; else if (dB < -30.0f) fScale = (dB + 40.0f) * 0.015f + 0.15f; else if (dB < -20.0f) fScale = (dB + 30.0f) * 0.02f + 0.3f; else if (dB < -0.001f || dB > 0.001f) /* if (dB < 0.0f) */ fScale = (dB + 20.0f) * 0.025f + 0.5f; return fScale; } -- +-DRD-+ -- +-DRD-+ ------------------------------------------------------------------------------ Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov _______________________________________________ Mlt-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mlt-devel
