Re: [libav-devel] [PATCH] On2 VP7 decoder

2014-03-30 Thread Kostya Shishkov
On Sat, Mar 29, 2014 at 11:56:25PM +0100, Luca Barbato wrote: From: Vittorio Giovara vittorio.giov...@gmail.com Further performance improvements and security fixes by Vittorio Giovara and Luca Barbato. Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com Signed-off-by: Luca Barbato

Re: [libav-devel] [PATCH 2/2] avcodec/dnxhdenc: return meaningful return codes

2014-03-30 Thread Luca Barbato
plaid does not like foo/bar: tags and please use dnxhdenc: for the next. beside that the patch itself looks fine. lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH] On2 VP7 decoder

2014-03-30 Thread Luca Barbato
On 30/03/14 09:06, Kostya Shishkov wrote: On Sat, Mar 29, 2014 at 11:56:25PM +0100, Luca Barbato wrote: From: Vittorio Giovara vittorio.giov...@gmail.com Further performance improvements and security fixes by Vittorio Giovara and Luca Barbato. Signed-off-by: Vittorio Giovara

Re: [libav-devel] OPW: Discussion about Project

2014-03-30 Thread Vittorio Giovara
On Sat, Mar 29, 2014 at 7:52 PM, preeti soni preetisoni.soni1...@gmail.com wrote: Hi, I want to discuss something about project Adobe DNG Decoder. But I don't know IRC channel, which is actually available for discussion. Mentor of Project is Justin Ruggles. Hello, you could try #libav-devel

Re: [libav-devel] [PATCH 1/2] avconv_opt: fix avio_open2() return code check

2014-03-30 Thread Vittorio Giovara
On Sat, Mar 29, 2014 at 10:59 PM, Timothy Gu timothyg...@gmail.com wrote: avio_open2() only return 0 when error. Signed-off-by: Timothy Gu timothyg...@gmail.com Signed-off-by: Michael Niedermayer michae...@gmx.at Signed-off-by: Timothy Gu timothyg...@gmail.com you can drop the sign-offs

Re: [libav-devel] [PATCH] On2 VP7 decoder

2014-03-30 Thread Luca Barbato
On 30/03/14 10:29, Luca Barbato wrote: From: Vittorio Giovara vittorio.giov...@gmail.com author restored locally. lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 1/2] avconv_opt: fix avio_open2() return code check

2014-03-30 Thread wm4
On Sun, 30 Mar 2014 10:20:17 +0200 Vittorio Giovara vittorio.giov...@gmail.com wrote: On Sat, Mar 29, 2014 at 10:59 PM, Timothy Gu timothyg...@gmail.com wrote: avio_open2() only return 0 when error. Signed-off-by: Timothy Gu timothyg...@gmail.com Signed-off-by: Michael Niedermayer

[libav-devel] [PATCH v4 5/5] af_volume: implement replaygain clipping prevention

2014-03-30 Thread Alessandro Ghedini
This adds a new replaygain-noclip option to the filter, and, if enabled, limits the gain applied for tracks where clipping would occur. --- Made clipping prevention optional with new replaygain-noclip option (not sure about the name though). Note that this patch depends on the 1/5 one in this

Re: [libav-devel] [PATCH 2/3] On2 VP7 decoder

2014-03-30 Thread Luca Barbato
On 26/03/14 22:24, Luca Barbato wrote: Not really, we could do that even if I don't see a large gain on it. I'd keep it as is in the end. lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

[libav-devel] [PATCH 2/2] libxvid: Add SSIM displaying through a libxvidcore plugin

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi| 37 + libavcodec/libxvid.c | 19 +++ libavcodec/version.h | 2 +- 3 files changed, 57 insertions(+), 1 deletion(-)

[libav-devel] [PATCH 1/2] libxvid: add working lumimasking and variance AQ

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com The old implementation is unusable due to changes in the Xvid API. Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi| 13 + libavcodec/libxvid.c | 43 +--

Re: [libav-devel] [PATCH 2/2] libxvid: Add SSIM displaying through a libxvidcore plugin

2014-03-30 Thread Luca Barbato
On 30/03/14 15:34, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi| 37 + libavcodec/libxvid.c | 19 +++ libavcodec/version.h | 2 +- 3

[libav-devel] [PATCH 3/3] libmp3lame: add ABR support

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- libavcodec/libmp3lame.c | 12 +--- libavcodec/version.h| 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c index fbb4032..bc4a6c3 100644 --- a/libavcodec/libmp3lame.c +++

[libav-devel] [PATCH 1/3] libmp3lame: allow joint stereo to be disabled

2014-03-30 Thread Vittorio Giovara
From: Paul B Mahol one...@gmail.com --- libavcodec/libmp3lame.c | 4 +++- libavcodec/version.h| 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c index ee76ff8..6da68ad 100644 --- a/libavcodec/libmp3lame.c +++

[libav-devel] [PATCH 2/3] libmp3lame: add comments about CBR/VBR modes

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- libavcodec/libmp3lame.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c index 6da68ad..fbb4032 100644 --- a/libavcodec/libmp3lame.c +++ b/libavcodec/libmp3lame.c @@ -110,11

[libav-devel] [PATCH] vf_scale: add force_original_aspect_ratio

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/filters.texi | 27 +++ libavfilter/version.h | 2 +- libavfilter/vf_scale.c | 20 3 files changed, 48 insertions(+), 1 deletion(-) diff --git a/doc/filters.texi b/doc/filters.texi index

[libav-devel] [PATCH] avconv: make the ASCII flow charts narrower to fit onto TTY

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com These charts in man page are currently destroyed. --- doc/avconv.texi | 39 +-- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/doc/avconv.texi b/doc/avconv.texi index 0c17eb9..ef525ce 100644 ---

[libav-devel] [PATCH] Add gen-rc tool for generating Windows resource files

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- Anyone willing to test this on Windows would be welcome. Vittorio tools/gen-rc | 122 +++ 1 file changed, 122 insertions(+) create mode 100755 tools/gen-rc diff --git a/tools/gen-rc

[libav-devel] [PATCH] aacenc: new default cutoff to improve subjective quality

2014-03-30 Thread Vittorio Giovara
From: Michael Niedermayer michae...@gmx.at Formula and testing by: kamedo2 fujisakihi...@yahoo.co.jp --- libavcodec/aacpsy.c | 3 ++- libavcodec/psymodel.c | 3 +++ libavcodec/psymodel.h | 5 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/libavcodec/aacpsy.c

Re: [libav-devel] [PATCH] avconv: make the ASCII flow charts narrower to fit onto TTY

2014-03-30 Thread Luca Barbato
On 30/03/14 15:48, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com These charts in man page are currently destroyed. --- doc/avconv.texi | 39 +-- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/doc/avconv.texi

Re: [libav-devel] [PATCH 3/3] libmp3lame: add ABR support

2014-03-30 Thread Timothy Gu
On Mar 30, 2014 6:50 AM, Vittorio Giovara vittorio.giov...@gmail.com wrote: From: Timothy Gu timothyg...@gmail.com --- libavcodec/libmp3lame.c | 12 +--- libavcodec/version.h| 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/libavcodec/libmp3lame.c

Re: [libav-devel] [PATCH 1/2] libxvid: add working lumimasking and variance AQ

2014-03-30 Thread Timothy Gu
On Mar 30, 2014 6:37 AM, Vittorio Giovara vittorio.giov...@gmail.com wrote: From: Timothy Gu timothyg...@gmail.com The old implementation is unusable due to changes in the Xvid API. Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi| 13 +

[libav-devel] [PATCH 2/2] libx265: Use the repeat headers flag when not using global headers

2014-03-30 Thread Derek Buitenhuis
From: Marcus Gustafsson man...@lysator.liu.se This allows proper muxing and seeking in things like MPEG-TS, by placing headers by random access points. Signed-off-by: Derek Buitenhuis derek.buitenh...@gmail.com --- libavcodec/libx265.c | 57 +---

[libav-devel] [PATCH 1/2] libx265: Bump version requirement

2014-03-30 Thread Derek Buitenhuis
Build 13 has a crucial fix which makes x265_encode_headers work as its always been documented. Previous to this, the check was incorrect. Also allows for use of the repeat headers flag. Signed-off-by: Derek Buitenhuis derek.buitenh...@gmail.com --- configure | 4 ++-- 1 file changed, 2

[libav-devel] [PATCH] libxvid: add working lumimasking and variance AQ

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com The old implementation is unusable due to changes in the Xvid API. Further fixes by Michael Niedermayer michae...@gmx.at. Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- Here is the amended patch. Vittorio doc/encoders.texi| 13

Re: [libav-devel] [PATCH] avconv: make the ASCII flow charts narrower to fit onto TTY

2014-03-30 Thread Timothy Gu
On Mar 30, 2014 7:04 AM, Luca Barbato lu_z...@gentoo.org wrote: filtergraph won't fit? No, it doesn't fit. Seems like the people here never check `man avconv`... Timothy ___ libav-devel mailing list libav-devel@libav.org

[libav-devel] [PATCH] libmp3lame: add ABR support

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- Nice catch. Vittorio libavcodec/libmp3lame.c | 11 +-- libavcodec/version.h| 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c index fbb4032..eebc65c 100644 ---

Re: [libav-devel] [PATCH] avconv: make the ASCII flow charts narrower to fit onto TTY

2014-03-30 Thread Vittorio Giovara
On Sun, Mar 30, 2014 at 5:41 PM, Timothy Gu timothyg...@gmail.com wrote: On Mar 30, 2014 7:04 AM, Luca Barbato lu_z...@gentoo.org wrote: filtergraph won't fit? No, it doesn't fit. Seems like the people here never check `man avconv`... Pushed, thanks. -- Vittorio

[libav-devel] [PATCH] libtwolame MP2 encoding support

2014-03-30 Thread Vittorio Giovara
From: Paul B Mahol one...@gmail.com --- Changelog | 1 + configure | 4 + doc/general.texi| 8 ++ libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/libtwolame.c | 210

[libav-devel] [PATCH 02/16] doc: encoders: Add documentation for libtwolame

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/encoders.texi | 63 +++ 1 file changed, 63 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi index b265fb8..3ea76cb 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -474,6

[libav-devel] [PATCH 03/16] doc: encoders: Add documentation for libvo-aacenc

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/encoders.texi | 24 1 file changed, 24 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi index 3ea76cb..6860b14 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -537,6 +537,30 @@ value is 0

[libav-devel] [PATCH 05/16] doc: encoders: Add documentation for libopencore-amrnb

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/encoders.texi | 37 + 1 file changed, 37 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi index f214964..eccc9c6 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -599,6 +599,43 @@ default

[libav-devel] [PATCH 04/16] doc: encoders: Add documentation for libvo-amrwbenc

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/encoders.texi | 38 ++ 1 file changed, 38 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi index 6860b14..f214964 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -561,6 +561,44 @@ Set

[libav-devel] [PATCH 09/16] doc: encoders: Add documentation for wavpackenc

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/encoders.texi | 64 ++- 1 file changed, 63 insertions(+), 1 deletion(-) diff --git a/doc/encoders.texi b/doc/encoders.texi index d2dbd57..cab79c4 100644 --- a/doc/encoders.texi +++

[libav-devel] [PATCH 12/16] doc: decoders: Add documentation for libopencore-amrwb

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/decoders.texi | 12 1 file changed, 12 insertions(+) diff --git a/doc/decoders.texi b/doc/decoders.texi index 5f8a18c..cbd589d 100644 --- a/doc/decoders.texi +++ b/doc/decoders.texi @@ -75,4 +75,16 @@ explicitly configure the build

[libav-devel] [PATCH 00/16] Documentation updates

2014-03-30 Thread Vittorio Giovara
Here is the complete documentation pack from Timothy Gu. I have amended minor things and removed what didn't apply here. Cheers, Vittorio James Almer (1): adler32: Fix doxy group definition Timothy Gu (15): doc: encoders: Add documentation for libmp3lame doc: encoders: Add

[libav-devel] [PATCH 07/16] doc: encoders: Add documentation for libvorbis

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/encoders.texi | 125 ++ 1 file changed, 125 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi index bbd8b87..997ef9a6 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@

[libav-devel] [PATCH 06/16] doc: encoders: Add documentation for AAC encoder

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi | 45 + 1 file changed, 45 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi index eccc9c6..bbd8b87 100644 ---

[libav-devel] [PATCH 08/16] doc: encoders: reformat libwavpack documentation

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/encoders.texi | 41 + 1 file changed, 29 insertions(+), 12 deletions(-) diff --git a/doc/encoders.texi b/doc/encoders.texi index 997ef9a6..d2dbd57 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@

[libav-devel] [PATCH 13/16] doc: decoders: Add documentation for libopus decoder

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/decoders.texi | 9 + 1 file changed, 9 insertions(+) diff --git a/doc/decoders.texi b/doc/decoders.texi index cbd589d..0758314 100644 --- a/doc/decoders.texi +++ b/doc/decoders.texi @@ -87,4 +87,13 @@ explicitly configure the build with

[libav-devel] [PATCH 11/16] doc: decoders: Add documentation for libopencore-amrnb

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/decoders.texi | 12 1 file changed, 12 insertions(+) diff --git a/doc/decoders.texi b/doc/decoders.texi index 59bf4f3..5f8a18c 100644 --- a/doc/decoders.texi +++ b/doc/decoders.texi @@ -63,4 +63,16 @@ to explicitly configure the build

[libav-devel] [PATCH 01/16] doc: encoders: Add documentation for libmp3lame

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi | 33 + 1 file changed, 33 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi index 24692b7..b265fb8 100644 ---

[libav-devel] [PATCH 10/16] doc: decoders: Add documentation for libgsm decoder

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- doc/decoders.texi | 10 ++ 1 file changed, 10 insertions(+) diff --git a/doc/decoders.texi b/doc/decoders.texi index c3573a6..59bf4f3 100644 --- a/doc/decoders.texi +++ b/doc/decoders.texi @@ -53,4 +53,14 @@ Loud sounds are fully compressed.

[libav-devel] [PATCH 14/16] adler32: Fix doxy group definition

2014-03-30 Thread Vittorio Giovara
From: James Almer jamr...@gmail.com --- libavutil/adler32.h | 9 + 1 file changed, 9 insertions(+) diff --git a/libavutil/adler32.h b/libavutil/adler32.h index a8ff6f9..2ced06e 100644 --- a/libavutil/adler32.h +++ b/libavutil/adler32.h @@ -25,7 +25,12 @@ #include attributes.h /** +

[libav-devel] [PATCH 15/16] adler32: Add Doxy group

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- libavutil/adler32.c | 9 + libavutil/adler32.h | 3 +++ 2 files changed, 12 insertions(+) diff --git a/libavutil/adler32.c b/libavutil/adler32.c index 7f5afdb..8a8065c 100644 --- a/libavutil/adler32.c +++ b/libavutil/adler32.c @@ -21,6 +21,15

[libav-devel] [PATCH 16/16] xtea: Add Doxy @file and group

2014-03-30 Thread Vittorio Giovara
From: Timothy Gu timothyg...@gmail.com --- libavutil/xtea.c | 7 +++ libavutil/xtea.h | 2 ++ 2 files changed, 9 insertions(+) diff --git a/libavutil/xtea.c b/libavutil/xtea.c index d1efebf..53c0bfe 100644 --- a/libavutil/xtea.c +++ b/libavutil/xtea.c @@ -21,6 +21,13 @@ * Foundation,

Re: [libav-devel] [PATCH 2/4] avformat/isom: only write the size if its non zero in mov_rewrite_dvd_sub_extradata()

2014-03-30 Thread Martin Storsjö
On Thu, 20 Mar 2014, wm4 wrote: From: Michael Niedermayer michae...@gmx.at Fixes regression with NeroRecodeSample.mp4 Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/isom.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavformat/isom.c

Re: [libav-devel] [PATCH 3/4] avformat/mov: fill in subtitle dimensions after parsing tkhd

2014-03-30 Thread Martin Storsjö
On Thu, 20 Mar 2014, wm4 wrote: From: Michael Niedermayer michae...@gmx.at Sample: NeroRecodeSample.mp4 Signed-off-by: Michael Niedermayer michae...@gmx.at Conflicts: libavformat/mov.c --- libavformat/mov.c | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff

Re: [libav-devel] [PATCH 4/4] avformat/mov: call mov_rewrite_dvd_sub_extradata() after parsing dimensions from tkhd

2014-03-30 Thread Martin Storsjö
On Thu, 20 Mar 2014, wm4 wrote: From: Michael Niedermayer michae...@gmx.at This also moves mov_rewrite_dvd_sub_extradata() to mov.c Fixes: NeroRecodeSample.mp4 Signed-off-by: Michael Niedermayer michae...@gmx.at --- This is a real problem. I wasn't sure whether this can happen, but apparently

Re: [libav-devel] [PATCH 1/4] avformat/isom: Simplify mov_rewrite_dvd_sub_extradata()

2014-03-30 Thread Martin Storsjö
On Thu, 20 Mar 2014, wm4 wrote: From: Michael Niedermayer michae...@gmx.at This avoids the 2nd buffer and fixes the palette truncated check Signed-off-by: Michael Niedermayer michae...@gmx.at --- I guess the length check is off by 1, so this defensive measure was ineffective, even if it

Re: [libav-devel] [PATCH] avconv: make the ASCII flow charts narrower to fit onto TTY

2014-03-30 Thread Luca Barbato
On 30/03/14 17:41, Timothy Gu wrote: On Mar 30, 2014 7:04 AM, Luca Barbato lu_z...@gentoo.org wrote: filtergraph won't fit? No, it doesn't fit. Seems like the people here never check `man avconv`... In my man+term combination those two graph are ok =) Thanks for fixing it.

Re: [libav-devel] [PATCH 1/2] libx265: Bump version requirement

2014-03-30 Thread Luca Barbato
On 30/03/14 17:23, Derek Buitenhuis wrote: Build 13 has a crucial fix which makes x265_encode_headers work as its always been documented. Previous to this, the check was incorrect. Also allows for use of the repeat headers flag. The set looks ok, how many chances they'll change the

[libav-devel] [PATCH] doc: Fit the graph in 80 cols

2014-03-30 Thread Luca Barbato
Some man pagers do not reflow the text/graphs on resize and the graphs did not fit the traditional 80cols due the pod2man excessive indent. --- This way might fit the screen estate slightly better. doc/avconv.texi | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff

Re: [libav-devel] [PATCH] libtwolame MP2 encoding support

2014-03-30 Thread Luca Barbato
On 30/03/14 19:18, Vittorio Giovara wrote: From: Paul B Mahol one...@gmail.com --- Changelog | 1 + configure | 4 + doc/general.texi| 8 ++ libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/libtwolame.c | 210

Re: [libav-devel] [PATCH 15/16] adler32: Add Doxy group

2014-03-30 Thread Luca Barbato
On 30/03/14 19:24, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- libavutil/adler32.c | 9 + libavutil/adler32.h | 3 +++ 2 files changed, 12 insertions(+) Ok. ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH 16/16] xtea: Add Doxy @file and group

2014-03-30 Thread Luca Barbato
On 30/03/14 19:24, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- libavutil/xtea.c | 7 +++ libavutil/xtea.h | 2 ++ 2 files changed, 9 insertions(+) Ok. ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH 12/16] doc: decoders: Add documentation for libopencore-amrwb

2014-03-30 Thread Luca Barbato
On 30/03/14 19:24, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- doc/decoders.texi | 12 1 file changed, 12 insertions(+) diff --git a/doc/decoders.texi b/doc/decoders.texi index 5f8a18c..cbd589d 100644 --- a/doc/decoders.texi +++ b/doc/decoders.texi

Re: [libav-devel] [PATCH] doc: Fit the graph in 80 cols

2014-03-30 Thread wm4
On Sun, 30 Mar 2014 20:09:15 +0200 Luca Barbato lu_z...@gentoo.org wrote: Some man pagers do not reflow the text/graphs on resize and the graphs did not fit the traditional 80cols due the pod2man excessive indent. --- This way might fit the screen estate slightly better.

Re: [libav-devel] [PATCH] libtwolame MP2 encoding support

2014-03-30 Thread Justin Ruggles
On 03/30/2014 01:18 PM, Vittorio Giovara wrote: From: Paul B Mahol one...@gmail.com --- Changelog | 1 + configure | 4 + doc/general.texi| 8 ++ libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/libtwolame.c | 210

Re: [libav-devel] [PATCH 11/16] doc: decoders: Add documentation for libopencore-amrnb

2014-03-30 Thread Luca Barbato
On 30/03/14 19:24, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- doc/decoders.texi | 12 1 file changed, 12 insertions(+) diff --git a/doc/decoders.texi b/doc/decoders.texi index 59bf4f3..5f8a18c 100644 --- a/doc/decoders.texi +++ b/doc/decoders.texi

Re: [libav-devel] [PATCH 11/16] doc: decoders: Add documentation for libopencore-amrnb

2014-03-30 Thread Martin Storsjö
On Sun, 30 Mar 2014, Luca Barbato wrote: On 30/03/14 19:24, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- doc/decoders.texi | 12 1 file changed, 12 insertions(+) diff --git a/doc/decoders.texi b/doc/decoders.texi index 59bf4f3..5f8a18c 100644 ---

Re: [libav-devel] [PATCH] doc: Fit the graph in 80 cols

2014-03-30 Thread Luca Barbato
On 30/03/14 20:19, wm4 wrote: @example - _ __ __ -| | simple | || | -| decoded | fltrgrph | filtered | encoder | encoded data | -| frames | -- | frames | - |

Re: [libav-devel] [PATCH 11/16] doc: decoders: Add documentation for libopencore-amrnb

2014-03-30 Thread Luca Barbato
On 30/03/14 20:23, Martin Storsjö wrote: On Sun, 30 Mar 2014, Luca Barbato wrote: On 30/03/14 19:24, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- doc/decoders.texi | 12 1 file changed, 12 insertions(+) diff --git a/doc/decoders.texi

Re: [libav-devel] [PATCH 03/16] doc: encoders: Add documentation for libvo-aacenc

2014-03-30 Thread Luca Barbato
On 30/03/14 19:23, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- doc/encoders.texi | 24 1 file changed, 24 insertions(+) Ok. ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH 01/16] doc: encoders: Add documentation for libmp3lame

2014-03-30 Thread Luca Barbato
On 30/03/14 19:23, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi | 33 + 1 file changed, 33 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi

Re: [libav-devel] [PATCH 07/16] doc: encoders: Add documentation for libvorbis

2014-03-30 Thread Justin Ruggles
On 03/30/2014 01:23 PM, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- doc/encoders.texi | 125 ++ 1 file changed, 125 insertions(+) The subject says libvorbis, but the patch is for libopus and libvorbis. How about

Re: [libav-devel] [PATCH 06/16] doc: encoders: Add documentation for AAC encoder

2014-03-30 Thread Luca Barbato
On 30/03/14 19:23, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi | 45 + 1 file changed, 45 insertions(+) diff --git a/doc/encoders.texi

Re: [libav-devel] [PATCH 1/3] libmp3lame: allow joint stereo to be disabled

2014-03-30 Thread Justin Ruggles
On 03/30/2014 09:46 AM, Vittorio Giovara wrote: From: Paul B Mahol one...@gmail.com --- libavcodec/libmp3lame.c | 4 +++- libavcodec/version.h| 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) Ok -Justin ___ libav-devel mailing list

Re: [libav-devel] [PATCH 2/3] libmp3lame: add comments about CBR/VBR modes

2014-03-30 Thread Justin Ruggles
On 03/30/2014 09:46 AM, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- libavcodec/libmp3lame.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c index 6da68ad..fbb4032 100644 ---

Re: [libav-devel] [PATCH] libmp3lame: add ABR support

2014-03-30 Thread Justin Ruggles
On 03/30/2014 11:44 AM, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com --- Nice catch. Vittorio libavcodec/libmp3lame.c | 11 +-- libavcodec/version.h| 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) LGTM -Justin

Re: [libav-devel] [PATCH v2 1/5] replaygain: correctly parse peak values

2014-03-30 Thread Justin Ruggles
On 03/26/2014 06:25 AM, Alessandro Ghedini wrote: According to the ReplayGain spec, the peak amplitude may overflow and may result in peak amplitude values greater than 1.0 with psychoacoustically coded audio, such as MP3. Fully compliant decoders must allow peak overflows. Additionally,

[libav-devel] [PATCH] fate: Convert the paletted output in the brenderpix tests to rgb24

2014-03-30 Thread Martin Storsjö
This makes the output consistent on big-endian systems. --- tests/fate/image.mak | 4 ++-- tests/ref/fate/brenderpix-defpal | 2 +- tests/ref/fate/brenderpix-intpal | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/fate/image.mak b/tests/fate/image.mak index

Re: [libav-devel] [PATCH] fate: Convert the paletted output in the brenderpix tests to rgb24

2014-03-30 Thread Luca Barbato
On 30/03/14 21:27, Martin Storsjö wrote: This makes the output consistent on big-endian systems. --- tests/fate/image.mak | 4 ++-- tests/ref/fate/brenderpix-defpal | 2 +- tests/ref/fate/brenderpix-intpal | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) Ok.

Re: [libav-devel] [PATCH 1/2] libx265: Bump version requirement

2014-03-30 Thread Hendrik Leppkes
On Sun, Mar 30, 2014 at 8:07 PM, Luca Barbato lu_z...@gentoo.org wrote: On 30/03/14 17:23, Derek Buitenhuis wrote: Build 13 has a crucial fix which makes x265_encode_headers work as its always been documented. Previous to this, the check was incorrect. Also allows for use of the repeat

Re: [libav-devel] [PATCH 1/2] libx265: Bump version requirement

2014-03-30 Thread Luca Barbato
On 30/03/14 22:10, Hendrik Leppkes wrote: On Sun, Mar 30, 2014 at 8:07 PM, Luca Barbato lu_z...@gentoo.org wrote: On 30/03/14 17:23, Derek Buitenhuis wrote: Build 13 has a crucial fix which makes x265_encode_headers work as its always been documented. Previous to this, the check was

Re: [libav-devel] [PATCH 01/16] doc: encoders: Add documentation for libmp3lame

2014-03-30 Thread Timothy Gu
On Mar 30, 2014 11:28 AM, Luca Barbato lu_z...@gentoo.org wrote: On 30/03/14 19:23, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi | 33 + 1 file changed,

Re: [libav-devel] [PATCH] libtwolame MP2 encoding support

2014-03-30 Thread Timothy Gu
On Mar 30, 2014 11:23 AM, Justin Ruggles justin.rugg...@gmail.com wrote: Do not return twolame error codes directly. I think they use errno codes. Timothy ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH 12/16] doc: decoders: Add documentation for libopencore-amrwb

2014-03-30 Thread Timothy Gu
On Mar 30, 2014 11:19 AM, Luca Barbato lu_z...@gentoo.org wrote: You need to +explicitly configure the build with @code{--enable-libopencore-amrwb}. + +A Libav native decoder for AMR-WB exists, so users can decode AMR-WB +without this library. I think would be better tell you need it

Re: [libav-devel] [PATCH 06/16] doc: encoders: Add documentation for AAC encoder

2014-03-30 Thread Timothy Gu
On Mar 30, 2014 11:31 AM, Luca Barbato lu_z...@gentoo.org wrote: On 30/03/14 19:23, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi | 45 + 1

Re: [libav-devel] [PATCH 06/16] doc: encoders: Add documentation for AAC encoder

2014-03-30 Thread Luca Barbato
On 30/03/14 23:18, Timothy Gu wrote: On Mar 30, 2014 11:31 AM, Luca Barbato lu_z...@gentoo.org wrote: On 30/03/14 19:23, Vittorio Giovara wrote: From: Timothy Gu timothyg...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- doc/encoders.texi | 45

Re: [libav-devel] [PATCH 12/16] doc: decoders: Add documentation for libopencore-amrwb

2014-03-30 Thread Luca Barbato
On 30/03/14 23:10, Timothy Gu wrote: On Mar 30, 2014 11:19 AM, Luca Barbato lu_z...@gentoo.org wrote: You need to +explicitly configure the build with @code{--enable-libopencore-amrwb}. + +A Libav native decoder for AMR-WB exists, so users can decode AMR-WB +without this library. I

[libav-devel] [PATCH] log: Support for 256color terminals

2014-03-30 Thread Luca Barbato
And provide extended coloring capabilities for debugging. The default colors do not change in 256 more to keep supporting people using Black on White, White on Black and Solarized terminals. Signed-off-by: Luca Barbato lu_z...@gentoo.org --- I keep using it for my bug hunting, might be useful

Re: [libav-devel] [PATCH] libtwolame MP2 encoding support

2014-03-30 Thread Justin Ruggles
On 03/30/2014 05:08 PM, Timothy Gu wrote: On Mar 30, 2014 11:23 AM, Justin Ruggles justin.rugg...@gmail.com wrote: Do not return twolame error codes directly. I think they use errno codes. Then it should be AVERROR(ret) -Justin ___ libav-devel

Re: [libav-devel] [PATCH] libtwolame MP2 encoding support

2014-03-30 Thread Justin Ruggles
On 03/30/2014 06:01 PM, Justin Ruggles wrote: On 03/30/2014 05:08 PM, Timothy Gu wrote: On Mar 30, 2014 11:23 AM, Justin Ruggles justin.rugg...@gmail.com wrote: Do not return twolame error codes directly. I think they use errno codes. Then it should be AVERROR(ret) Although, after

Re: [libav-devel] [PATCH] fate: Convert the paletted output in the brenderpix tests to rgb24

2014-03-30 Thread Vittorio Giovara
On Sun, Mar 30, 2014 at 9:27 PM, Martin Storsjö mar...@martin.st wrote: This makes the output consistent on big-endian systems. --- tests/fate/image.mak | 4 ++-- tests/ref/fate/brenderpix-defpal | 2 +- tests/ref/fate/brenderpix-intpal | 2 +- 3 files changed, 4 insertions(+),

Re: [libav-devel] [PATCH] libtwolame MP2 encoding support

2014-03-30 Thread Kieran Kunhya
The native mp2 encoder we have is that bad? I'd rather not have duplicates w/out compelling reasons. TwoLAME is significantly better. ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

[libav-devel] [PATCH] libtwolame MP2 encoding support

2014-03-30 Thread Vittorio Giovara
From: Paul B Mahol one...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- Updated docs, simplified a few error conditions and other comments. I added an av_log_get_level() to set the library verbosity and an av_shrink_packet(). Cheers, Vittorio Changelog

[libav-devel] [PATCH] [RFC] asettb: setting timebases for audio files

2014-03-30 Thread Katerina Barone-Adesi
The following patch adds a new audio filter, asettb, as suggested by elenril on irc as an initial OPW task. It's ported from ffmpeg. Comments are welcome. It appears to work: $ avconv -i /usr/share/doc/texlive-doc/latex/animate/files/click.mp3 -af 'ashowinfo,asettb=intb*2,ashowinfo'

Re: [libav-devel] [PATCH] log: Support for 256color terminals

2014-03-30 Thread Vittorio Giovara
On Sun, Mar 30, 2014 at 11:41 PM, Luca Barbato lu_z...@gentoo.org wrote: And provide extended coloring capabilities for debugging. The default colors do not change in 256 more to keep supporting people using Black on White, White on Black and Solarized terminals. Signed-off-by: Luca Barbato

Re: [libav-devel] [PATCH] [RFC] asettb: setting timebases for audio files

2014-03-30 Thread Timothy Gu
On Mar 30, 2014 5:43 PM, Katerina Barone-Adesi kateri...@gmail.com wrote: The following patch adds a new audio filter, asettb, as suggested by elenril on irc as an initial OPW task. It's ported from ffmpeg. Comments are welcome. Thanks for doing this. Some comments and possible improvements: