Re: [libav-devel] [PATCHv2] vf_interlace: Add SIMD for lowpass filter

2014-11-11 Thread Luca Barbato
On 11/11/14 19:43, Kieran Kunhya wrote: > --- > libavfilter/interlace.h | 59 + > libavfilter/vf_interlace.c | 55 +-- > libavfilter/x86/Makefile| 2 + > libavfilter/x86/vf_interlace.asm| 75 > ++

[libav-devel] [PATCHv2] vf_interlace: Add SIMD for lowpass filter

2014-11-11 Thread Kieran Kunhya
--- libavfilter/interlace.h | 59 + libavfilter/vf_interlace.c | 55 +-- libavfilter/x86/Makefile| 2 + libavfilter/x86/vf_interlace.asm| 75 + libavfilter/x86/vf_interlace

Re: [libav-devel] [PATCH 02/11] vc1dec: refactor check with missing parenthesis

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > FATE tests updated accordingly, no visual difference. > > CC: libav-sta...@libav.org > Bug-Id: CID 1087087 > --- > libavcodec/vc1_mc.c | 7 +++ > tests/ref/fate/vc1_ilaced_twomv | 8 > tests/ref/fate/vc1_sa10143 | 28 +++

Re: [libav-devel] [PATCH 11/11] escape124: explicitly set get_bits1 variable

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > Makes coverity less confused. > > CC: libav-sta...@libav.org > Bug-Id: CID 1203487 > --- > libavcodec/escape124.c | 7 --- > 1 file changed, 4 insertions(+), 3 deletions(-) > Ok. ___ libav-devel mailin

Re: [libav-devel] [PATCH 09/11] lzwenc: check for negative indexes

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 700465 / CID 1240206 > --- > libavcodec/lzwenc.c | 5 - > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/lzwenc.c b/libavcodec/lzwenc.c > index 7c37bf2..2533f49 100644 > --- a/lib

Re: [libav-devel] [PATCH 10/11] shorten: check for return value

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > Avoid a possible negative bitshift. > > CC: libav-sta...@libav.org > Bug-Id: CID 1194400 > --- > libavcodec/shorten.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c > index c465fff..c93ba6b 10064

Re: [libav-devel] [PATCH 08/11] mlpdec: check for negative index

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 970924 > --- > libavcodec/mlpdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c > index 6baf4c1..624efc1 100644 > --- a/libavcodec/mlpdec.c >

Re: [libav-devel] [PATCH 07/11] ffv1enc: simplify encoder initialization

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > Also check return value of av_pix_fmt_desc_get. > --- > libavcodec/ffv1enc.c | 41 +++-- > 1 file changed, 11 insertions(+), 30 deletions(-) > A step in the good direction. __

Re: [libav-devel] [PATCH 06/11] ffv1: fix out-of-bounds read

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 1047234 > --- > libavcodec/ffv1enc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c > index 179453d..93630b4 100644 > --- a/libavcodec/ffv1en

Re: [libav-devel] [PATCH 05/11] vorbisenc: add missing parenthesis

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > Bug-Id: CID 1238791 > --- > libavcodec/vorbisenc.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/vorbisenc.c b/libavcodec/vorbisenc.c > index 830e5d1..10c7932 100644 > --- a/libavcodec/vorbisenc.c > +++ b/liba

Re: [libav-devel] [PATCH 04/11] dpxenc: mention missing break

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > Bug-Id: CID 732229 > --- > libavcodec/dpxenc.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavcodec/dpxenc.c b/libavcodec/dpxenc.c > index 2232933..4de71cf 100644 > --- a/libavcodec/dpxenc.c > +++ b/libavcodec/dpxenc.c > @@ -54,6 +54,7 @

Re: [libav-devel] [PATCH 01/11] vc1dec: always initialize tx and ty

2014-11-11 Thread Luca Barbato
On 11/11/14 17:39, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 1245702 / CID 1245703 > --- > libavcodec/vc1_mc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/vc1_mc.c b/libavcodec/vc1_mc.c > index 54c4e72..00a003c 100644 > --- a/libavc

Re: [libav-devel] [PATCH 03/11] sunrastenc: mention missing break

2014-11-11 Thread Luca Barbato
On 11/11/14 17:40, Vittorio Giovara wrote: > Bug-Id: CID 732231 > --- > libavcodec/sunrastenc.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavcodec/sunrastenc.c b/libavcodec/sunrastenc.c > index 25ae9bd..8e90a6c 100644 > --- a/libavcodec/sunrastenc.c > +++ b/libavcodec/sunrastenc.

[libav-devel] [PATCH 11/11] escape124: explicitly set get_bits1 variable

2014-11-11 Thread Vittorio Giovara
Makes coverity less confused. CC: libav-sta...@libav.org Bug-Id: CID 1203487 --- libavcodec/escape124.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libavcodec/escape124.c b/libavcodec/escape124.c index 30f22e0..6c4654c 100644 --- a/libavcodec/escape124.c +++ b/libav

[libav-devel] [PATCH 04/11] dpxenc: mention missing break

2014-11-11 Thread Vittorio Giovara
Bug-Id: CID 732229 --- libavcodec/dpxenc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/dpxenc.c b/libavcodec/dpxenc.c index 2232933..4de71cf 100644 --- a/libavcodec/dpxenc.c +++ b/libavcodec/dpxenc.c @@ -54,6 +54,7 @@ static av_cold int encode_init(AVCodecContext *avctx)

[libav-devel] [PATCH 06/11] ffv1: fix out-of-bounds read

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 1047234 --- libavcodec/ffv1enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index 179453d..93630b4 100644 --- a/libavcodec/ffv1enc.c +++ b/libavcodec/ffv1enc.c @@ -71,7 +71,7 @@ static void

[libav-devel] [PATCH 09/11] lzwenc: check for negative indexes

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 700465 / CID 1240206 --- libavcodec/lzwenc.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libavcodec/lzwenc.c b/libavcodec/lzwenc.c index 7c37bf2..2533f49 100644 --- a/libavcodec/lzwenc.c +++ b/libavcodec/lzwenc.c @@ -129,7 +129,7 @

[libav-devel] [PATCH 07/11] ffv1enc: simplify encoder initialization

2014-11-11 Thread Vittorio Giovara
Also check return value of av_pix_fmt_desc_get. --- libavcodec/ffv1enc.c | 41 +++-- 1 file changed, 11 insertions(+), 30 deletions(-) diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index 93630b4..ea7260a 100644 --- a/libavcodec/ffv1enc.c +++ b/libavc

[libav-devel] [PATCH 02/11] vc1dec: refactor check with missing parenthesis

2014-11-11 Thread Vittorio Giovara
FATE tests updated accordingly, no visual difference. CC: libav-sta...@libav.org Bug-Id: CID 1087087 --- libavcodec/vc1_mc.c | 7 +++ tests/ref/fate/vc1_ilaced_twomv | 8 tests/ref/fate/vc1_sa10143 | 28 ++-- 3 files changed, 21 insertions(+

[libav-devel] [PATCH 03/11] sunrastenc: mention missing break

2014-11-11 Thread Vittorio Giovara
Bug-Id: CID 732231 --- libavcodec/sunrastenc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/sunrastenc.c b/libavcodec/sunrastenc.c index 25ae9bd..8e90a6c 100644 --- a/libavcodec/sunrastenc.c +++ b/libavcodec/sunrastenc.c @@ -169,6 +169,7 @@ static av_cold int sunrast_encode_init(

[libav-devel] [PATCH 08/11] mlpdec: check for negative index

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 970924 --- libavcodec/mlpdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index 6baf4c1..624efc1 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -552,7 +552,7 @@ FF_ENABLE_DEPREC

[libav-devel] [PATCH 10/11] shorten: check for return value

2014-11-11 Thread Vittorio Giovara
Avoid a possible negative bitshift. CC: libav-sta...@libav.org Bug-Id: CID 1194400 --- libavcodec/shorten.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c index c465fff..c93ba6b 100644 --- a/libavcodec/shorten.c +++ b/libavcodec/shorten.c @@ -510

[libav-devel] [PATCH 00/11] fatb - lavc part 5

2014-11-11 Thread Vittorio Giovara
No updates related to batch 3, 70% of batch 4 queued. vc1 and ffv1 as main guests. Vittorio Vittorio Giovara (11): vc1dec: always initialize tx and ty vc1dec: refactor check with missing parenthesis sunrastenc: mention missing break dpxenc: mention missing break vorbisenc: add missing

[libav-devel] [PATCH 01/11] vc1dec: always initialize tx and ty

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 1245702 / CID 1245703 --- libavcodec/vc1_mc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vc1_mc.c b/libavcodec/vc1_mc.c index 54c4e72..00a003c 100644 --- a/libavcodec/vc1_mc.c +++ b/libavcodec/vc1_mc.c @@ -302,7 +302,7 @@ v

[libav-devel] [PATCH 05/11] vorbisenc: add missing parenthesis

2014-11-11 Thread Vittorio Giovara
Bug-Id: CID 1238791 --- libavcodec/vorbisenc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavcodec/vorbisenc.c b/libavcodec/vorbisenc.c index 830e5d1..10c7932 100644 --- a/libavcodec/vorbisenc.c +++ b/libavcodec/vorbisenc.c @@ -1091,11 +1091,12 @@ static int vorbis_

[libav-devel] [PATCH] lavu: fix memory leaks by using a mutex instead of atomics

2014-11-11 Thread wm4
The buffer pool has to atomically add and remove entries from the linked list of available buffers. This was done by removing the entire list with a CAS operation, working on it, and then setting it back again (using a retry-loop in case another thread was doing the same thing). This could effecti

Re: [libav-devel] [PATCH 02/10] libopusenc: prevent an out-of-bounds read by returning early

2014-11-11 Thread Vittorio Giovara
On Tue, Nov 11, 2014 at 5:00 PM, Justin Ruggles wrote: > On 11/11/2014 10:43 AM, Vittorio Giovara wrote: >> >> On Tue, Nov 11, 2014 at 3:56 PM, Luca Barbato wrote: >>> >>> On 11/11/14 13:26, Vittorio Giovara wrote: CC: libav-sta...@libav.org Bug-Id: CID 1244188 --- liba

Re: [libav-devel] [PATCH 02/10] libopusenc: prevent an out-of-bounds read by returning early

2014-11-11 Thread Justin Ruggles
On 11/11/2014 10:43 AM, Vittorio Giovara wrote: On Tue, Nov 11, 2014 at 3:56 PM, Luca Barbato wrote: On 11/11/14 13:26, Vittorio Giovara wrote: CC: libav-sta...@libav.org Bug-Id: CID 1244188 --- libavcodec/libopusenc.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git

Re: [libav-devel] [PATCH 07/10] vp8: fix checking vp7_feature_value_size

2014-11-11 Thread Vittorio Giovara
On Tue, Nov 11, 2014 at 3:54 PM, Luca Barbato wrote: > On 11/11/14 13:27, Vittorio Giovara wrote: >> From: Michael Niedermayer >> >> CC: libav-sta...@libav.org >> Bug-Id: CID 1197061 >> --- >> libavcodec/vp8.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/libavcodec

Re: [libav-devel] [PATCH 05/10] proresenc: validate index array

2014-11-11 Thread Vittorio Giovara
On Tue, Nov 11, 2014 at 3:55 PM, Luca Barbato wrote: > On 11/11/14 13:26, Vittorio Giovara wrote: >> CC: libav-sta...@libav.org >> Bug-Id: CID 1087089 >> --- >> libavcodec/proresenc.c | 5 +++-- >> 1 file changed, 3 insertions(+), 2 deletions(-) >> >> diff --git a/libavcodec/proresenc.c b/libavco

Re: [libav-devel] [PATCH 04/10] nellymoserenc: fix array index

2014-11-11 Thread Vittorio Giovara
On Tue, Nov 11, 2014 at 3:52 PM, Luca Barbato wrote: > On 11/11/14 13:26, Vittorio Giovara wrote: >> CC: libav-sta...@libav.org >> Bug-Id: CID 732258 >> --- >> libavcodec/nellymoserenc.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/libavcodec/nellymoserenc.c b/libav

Re: [libav-devel] [PATCH 02/10] libopusenc: prevent an out-of-bounds read by returning early

2014-11-11 Thread Vittorio Giovara
On Tue, Nov 11, 2014 at 3:56 PM, Luca Barbato wrote: > On 11/11/14 13:26, Vittorio Giovara wrote: >> CC: libav-sta...@libav.org >> Bug-Id: CID 1244188 >> --- >> libavcodec/libopusenc.c | 7 --- >> 1 file changed, 4 insertions(+), 3 deletions(-) >> >> diff --git a/libavcodec/libopusenc.c b/lib

Re: [libav-devel] [PATCH 01/10] libopusenc: check return value

2014-11-11 Thread Luca Barbato
On 11/11/14 13:26, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 739870 > --- > libavcodec/libopusenc.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/libopusenc.c b/libavcodec/libopusenc.c > index ee9655b..8447206 100644 > --- a/libavc

Re: [libav-devel] [PATCH 02/10] libopusenc: prevent an out-of-bounds read by returning early

2014-11-11 Thread Luca Barbato
On 11/11/14 13:26, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 1244188 > --- > libavcodec/libopusenc.c | 7 --- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/libavcodec/libopusenc.c b/libavcodec/libopusenc.c > index 8447206..9103677 100644 > --- a/l

Re: [libav-devel] [PATCH 10/10] dnxhdenc: check negative index

2014-11-11 Thread Luca Barbato
On 11/11/14 13:27, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 700464 > --- > libavcodec/dnxhdenc.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c > index 4294510..c49ad7e 100644 > --- a/libavcodec/dnxhdenc.c > +++ b

Re: [libav-devel] [PATCH 05/10] proresenc: validate index array

2014-11-11 Thread Luca Barbato
On 11/11/14 13:26, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 1087089 > --- > libavcodec/proresenc.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/proresenc.c b/libavcodec/proresenc.c > index 3a82c2c..df9b834 100644 > --- a/libavc

Re: [libav-devel] [PATCH 09/10] display: fix order of operands

2014-11-11 Thread Luca Barbato
On 11/11/14 13:27, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 1238828 / CID 1238832 > --- > libavcodec/h264.c | 2 +- > libavcodec/hevc.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > Ok. ___ libav-devel mailing

Re: [libav-devel] [PATCH 07/10] vp8: fix checking vp7_feature_value_size

2014-11-11 Thread Luca Barbato
On 11/11/14 13:27, Vittorio Giovara wrote: > From: Michael Niedermayer > > CC: libav-sta...@libav.org > Bug-Id: CID 1197061 > --- > libavcodec/vp8.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c > index 0d2cab3..f437fee 100644 > ---

Re: [libav-devel] [PATCH 04/10] nellymoserenc: fix array index

2014-11-11 Thread Luca Barbato
On 11/11/14 13:26, Vittorio Giovara wrote: > CC: libav-sta...@libav.org > Bug-Id: CID 732258 > --- > libavcodec/nellymoserenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/nellymoserenc.c b/libavcodec/nellymoserenc.c > index 302c69c..98c2b39 100644 > --- a/

Re: [libav-devel] [PATCH 03/10] nellymoserenc: fix array element ordering

2014-11-11 Thread Luca Barbato
On 11/11/14 13:26, Vittorio Giovara wrote: > From: Michael Niedermayer > > Fixes assertion failures and valgrind warnings in trellis encoder > > CC: libav-sta...@libav.org > Bug-Id: CID 732256 / CID 732257 > --- > libavcodec/nellymoserenc.c | 8 > 1 file changed, 4 insertions(+), 4 del

[libav-devel] [PATCH 10/10] dnxhdenc: check negative index

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 700464 --- libavcodec/dnxhdenc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c index 4294510..c49ad7e 100644 --- a/libavcodec/dnxhdenc.c +++ b/libavcodec/dnxhdenc.c @@ -299,6 +299,8 @@ static av_cold int d

[libav-devel] [PATCH 05/10] proresenc: validate index array

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 1087089 --- libavcodec/proresenc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavcodec/proresenc.c b/libavcodec/proresenc.c index 3a82c2c..df9b834 100644 --- a/libavcodec/proresenc.c +++ b/libavcodec/proresenc.c @@ -559,13 +559

[libav-devel] [PATCH 07/10] vp8: fix checking vp7_feature_value_size

2014-11-11 Thread Vittorio Giovara
From: Michael Niedermayer CC: libav-sta...@libav.org Bug-Id: CID 1197061 --- libavcodec/vp8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 0d2cab3..f437fee 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -529,7 +529,7 @@ st

[libav-devel] [PATCH 02/10] libopusenc: prevent an out-of-bounds read by returning early

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 1244188 --- libavcodec/libopusenc.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libavcodec/libopusenc.c b/libavcodec/libopusenc.c index 8447206..9103677 100644 --- a/libavcodec/libopusenc.c +++ b/libavcodec/libopusenc.c @@ -163,

[libav-devel] [PATCH 03/10] nellymoserenc: fix array element ordering

2014-11-11 Thread Vittorio Giovara
From: Michael Niedermayer Fixes assertion failures and valgrind warnings in trellis encoder CC: libav-sta...@libav.org Bug-Id: CID 732256 / CID 732257 --- libavcodec/nellymoserenc.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/nellymoserenc.c b/libavcod

[libav-devel] [PATCH 04/10] nellymoserenc: fix array index

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 732258 --- libavcodec/nellymoserenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/nellymoserenc.c b/libavcodec/nellymoserenc.c index 302c69c..98c2b39 100644 --- a/libavcodec/nellymoserenc.c +++ b/libavcodec/nellymoserenc.c @

[libav-devel] [PATCH 00/10] fatb - lavc part 4

2014-11-11 Thread Vittorio Giovara
All reviewed patch from batch 2 and 3 got committed, some patches from batch 3 are still waiting for a review or being discussed. This batch has a couple of fixes for prores, vp*, nellymoser and libopusenc. Cheers, Vittorio Luca Barbato (2): prores: Evaluate all the quantizers vp9: Use t

[libav-devel] [PATCH 08/10] vp9: Use the correct upper bound for seg_id

2014-11-11 Thread Vittorio Giovara
From: Luca Barbato And use a macro to make apparent why the value. Bug-Id: CID 1108595 --- libavcodec/vp9.h | 3 ++- libavcodec/vp9block.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/libavcodec/vp9.h b/libavcodec/vp9.h index 0a6c6ee..724288d 100644 --- a/libavco

[libav-devel] [PATCH 09/10] display: fix order of operands

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 1238828 / CID 1238832 --- libavcodec/h264.c | 2 +- libavcodec/hevc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 5127f91..a392054 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@

[libav-devel] [PATCH 06/10] prores: Evaluate all the quantizers

2014-11-11 Thread Vittorio Giovara
From: Luca Barbato Prevent an uninitialized data access. CC: libav-sta...@libav.org Bug-Id: CID 703824 / CID 703825 --- libavcodec/proresenc.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/proresenc.c b/libavcodec/proresenc.c index df9b834..7209f34 10064

[libav-devel] [PATCH 01/10] libopusenc: check return value

2014-11-11 Thread Vittorio Giovara
CC: libav-sta...@libav.org Bug-Id: CID 739870 --- libavcodec/libopusenc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavcodec/libopusenc.c b/libavcodec/libopusenc.c index ee9655b..8447206 100644 --- a/libavcodec/libopusenc.c +++ b/libavcodec/libopusenc.c @@ -308,7 +30

Re: [libav-devel] [PATCH] tiff: Use av_mallocz_array

2014-11-11 Thread Luca Barbato
On 10/11/14 14:45, Vittorio Giovara wrote: > On Sun, Nov 9, 2014 at 3:11 PM, Luca Barbato wrote: >> CC: libav-sta...@libav.org >> --- >> libavcodec/tiffenc.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c >> index 93c151

Re: [libav-devel] [PATCH] Fixed issues with the Icecast protocol

2014-11-11 Thread Luca Barbato
On 11/11/14 00:15, epira...@gmail.com wrote: > From: Marvin Scholz > The set looks good. lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH] opt: Fix the documentation mentioning av_set_string3

2014-11-11 Thread Vittorio Giovara
On Tue, Nov 11, 2014 at 2:39 AM, Luca Barbato wrote: > It is av_opt_set now. > --- > > libavutil/opt.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavutil/opt.h b/libavutil/opt.h > index ac722ee..8413206 100644 > --- a/libavutil/opt.h > +++ b/libavutil/opt.h > @