Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-07-13 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 11:14:45AM -0500, Kyle Swanson wrote: > On Sun, Jun 19, 2016 at 2:17 AM, Kyle Swanson wrote: > > Hi, > > > > af_loudnorm currently links libebur128. The port makes sense because > > libebur128 is tiny, MIT-licensed, has a good API, and would be useful > > in

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-27 Thread Kyle Swanson
On Sun, Jun 19, 2016 at 2:17 AM, Kyle Swanson wrote: > Hi, > > af_loudnorm currently links libebur128. The port makes sense because > libebur128 is tiny, MIT-licensed, has a good API, and would be useful > in several filters. Perceptual loudness has become an important topic > in

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-19 Thread Kyle Swanson
On Sat, Jun 18, 2016 at 6:00 AM, Clément Bœsch wrote: > On Sat, Jun 18, 2016 at 12:58:59PM +0200, Paul B Mahol wrote: >> On 6/18/16, Clement Boesch wrote: >> > On Sat, Jun 18, 2016 at 12:34:10PM +0200, Paul B Mahol wrote: >> >> On 6/18/16, Hendrik Leppkes

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-19 Thread Kyle Swanson
On Sat, Jun 18, 2016 at 3:49 AM, Hendrik Leppkes wrote: > On Sat, Jun 18, 2016 at 10:38 AM, Hendrik Leppkes wrote: >> On Sat, Jun 18, 2016 at 8:43 AM, Kyle Swanson wrote: >>> On Sun, Jun 12, 2016 at 4:14 PM, Kyle Swanson

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-18 Thread Clément Bœsch
On Sat, Jun 18, 2016 at 12:58:59PM +0200, Paul B Mahol wrote: > On 6/18/16, Clement Boesch wrote: > > On Sat, Jun 18, 2016 at 12:34:10PM +0200, Paul B Mahol wrote: > >> On 6/18/16, Hendrik Leppkes wrote: > >> > On Sat, Jun 18, 2016 at 10:38 AM, Hendrik Leppkes

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-18 Thread Paul B Mahol
On 6/18/16, Clement Boesch wrote: > On Sat, Jun 18, 2016 at 12:34:10PM +0200, Paul B Mahol wrote: >> On 6/18/16, Hendrik Leppkes wrote: >> > On Sat, Jun 18, 2016 at 10:38 AM, Hendrik Leppkes >> > wrote: >> >> On Sat, Jun 18, 2016 at 8:43

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-18 Thread Clément Bœsch
On Sat, Jun 18, 2016 at 12:34:10PM +0200, Paul B Mahol wrote: > On 6/18/16, Hendrik Leppkes wrote: > > On Sat, Jun 18, 2016 at 10:38 AM, Hendrik Leppkes > > wrote: > >> On Sat, Jun 18, 2016 at 8:43 AM, Kyle Swanson wrote: > >>> On Sun, Jun

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-18 Thread Paul B Mahol
On 6/18/16, Hendrik Leppkes wrote: > On Sat, Jun 18, 2016 at 10:38 AM, Hendrik Leppkes > wrote: >> On Sat, Jun 18, 2016 at 8:43 AM, Kyle Swanson wrote: >>> On Sun, Jun 12, 2016 at 4:14 PM, Kyle Swanson wrote:

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-18 Thread Hendrik Leppkes
On Sat, Jun 18, 2016 at 8:43 AM, Kyle Swanson wrote: > On Sun, Jun 12, 2016 at 4:14 PM, Kyle Swanson wrote: >> >> 0001-avfilter-add-libebur128-port.patch >> This first patch ports libebur128 to ffmpeg. I haven't re-indented >> these yet, so please diff `ebur128.c' and

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-18 Thread Hendrik Leppkes
On Sat, Jun 18, 2016 at 10:38 AM, Hendrik Leppkes wrote: > On Sat, Jun 18, 2016 at 8:43 AM, Kyle Swanson wrote: >> On Sun, Jun 12, 2016 at 4:14 PM, Kyle Swanson wrote: >>> >>> 0001-avfilter-add-libebur128-port.patch >>> This first patch ports

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-18 Thread Clément Bœsch
On Sat, Jun 18, 2016 at 01:43:26AM -0500, Kyle Swanson wrote: > On Sun, Jun 12, 2016 at 4:14 PM, Kyle Swanson wrote: > > > > 0001-avfilter-add-libebur128-port.patch > > This first patch ports libebur128 to ffmpeg. I haven't re-indented > > these yet, so please diff `ebur128.c' and

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-18 Thread Kyle Swanson
On Sun, Jun 12, 2016 at 4:14 PM, Kyle Swanson wrote: > > 0001-avfilter-add-libebur128-port.patch > This first patch ports libebur128 to ffmpeg. I haven't re-indented > these yet, so please diff `ebur128.c' and `ebur128.h' with the > original libebur128 files[1][2] to see what has

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-12 Thread Kyle Swanson
On Sun, Jun 12, 2016 at 4:32 PM, Rostislav Pehlivanov wrote: > On 12 June 2016 at 22:14, Kyle Swanson wrote: > >> Hi all, >> >> Here's three patches. These are still WIP and not ready to be pushed. >> >> 0001-avfilter-add-libebur128-port.patch >> This first

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-12 Thread Rostislav Pehlivanov
On 13 June 2016 at 01:57, Michael Niedermayer wrote: > On Sun, Jun 12, 2016 at 04:14:56PM -0500, Kyle Swanson wrote: > > Hi all, > > > > Here's three patches. These are still WIP and not ready to be pushed. > > > > 0001-avfilter-add-libebur128-port.patch > > This first

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-12 Thread Rostislav Pehlivanov
On 12 June 2016 at 22:14, Kyle Swanson wrote: > Hi all, > > Here's three patches. These are still WIP and not ready to be pushed. > > 0001-avfilter-add-libebur128-port.patch > This first patch ports libebur128 to ffmpeg. I haven't re-indented > these yet, so please diff `ebur128.c'

[FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-12 Thread Kyle Swanson
Hi all, Here's three patches. These are still WIP and not ready to be pushed. 0001-avfilter-add-libebur128-port.patch This first patch ports libebur128 to ffmpeg. I haven't re-indented these yet, so please diff `ebur128.c' and `ebur128.h' with the original libebur128 files[1][2] to see what has