Re: [libav-devel] [PATCH 02/15] lavc: add a new bitstream filtering API

2016-03-03 Thread Anton Khirnov
Quoting Hendrik Leppkes (2016-02-26 10:53:24) > On Thu, Feb 25, 2016 at 4:05 PM, Anton Khirnov wrote: > > Deprecate the current bitstream filtering API. > > +/** > > + * Iterate over all registered bitstream filters. > > + * > > + * @param opaque a pointer where libavcodec will store the iteration

Re: [libav-devel] [PATCH 1/6] lavu: improve documentation of some AVFrame functions

2016-03-03 Thread Anton Khirnov
No important objections from me now. Since this is a rather large change, I'd wait until next week for more comments, then push it if there are none. Are you planning to convert any actual encoders/decoders to the new API? Also, what about deprecating the old one? -- Anton Khirnov __

Re: [libav-devel] [PATCH][Release/11] asfenc: Check pts leading to integer overflow

2016-03-03 Thread Luca Barbato
On 03/03/16 16:29, Vittorio Giovara wrote: > From: Michael Niedermayer > > Bug-Id: CVE-2016-2326 > Sample-Id: > 0063df8be3aaa30dd6d76f59c8f818c8/signal_sigsegv_7b7b59_3634_bf418b6822bbfa68734411d96b667be3.mov > > Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind > Signed-off-by: Michael Ni

Re: [libav-devel] [PATCH] avformat_find_stream_info: move duration guessing after updating codec parameters

2016-03-03 Thread Luca Barbato
On 03/03/16 10:26, Anton Khirnov wrote: > This bitrate might not be known otherwise. > > Bug-Id: 926 > --- > libavformat/utils.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavformat/utils.c b/libavformat/utils.c > index a70746a..31faa95 100644 > --- a/libavfor

[libav-devel] [PATCH][Release/11] asfenc: Check pts leading to integer overflow

2016-03-03 Thread Vittorio Giovara
From: Michael Niedermayer Bug-Id: CVE-2016-2326 Sample-Id: 0063df8be3aaa30dd6d76f59c8f818c8/signal_sigsegv_7b7b59_3634_bf418b6822bbfa68734411d96b667be3.mov Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer --- Note: untested, people with the sample pleas

Re: [libav-devel] [PATCH] avcodec/eatqi: print error on mb decode failure

2016-03-03 Thread Anton Khirnov
Quoting Hendrik Leppkes (2016-03-03 15:26:16) > On Fri, Feb 26, 2016 at 5:38 AM, Vittorio Giovara > wrote: > > From: Michael Niedermayer > > > > Reviewed-by: Derek Buitenhuis > > Signed-off-by: Michael Niedermayer > > --- > > libavcodec/eatqi.c | 8 +++- > > 1 file changed, 7 insertions(+)

Re: [libav-devel] [PATCH] avcodec/eatqi: print error on mb decode failure

2016-03-03 Thread Hendrik Leppkes
On Fri, Feb 26, 2016 at 5:38 AM, Vittorio Giovara wrote: > From: Michael Niedermayer > > Reviewed-by: Derek Buitenhuis > Signed-off-by: Michael Niedermayer > --- > libavcodec/eatqi.c | 8 +++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/eatqi.c b/libavcodec

Re: [libav-devel] [PATCH] avcodec/eatqi: print error on mb decode failure

2016-03-03 Thread Anton Khirnov
Quoting Diego Biurrun (2016-02-26 09:49:45) > On Thu, Feb 25, 2016 at 11:38:44PM -0500, Vittorio Giovara wrote: > > --- a/libavcodec/eatqi.c > > +++ b/libavcodec/eatqi.c > > @@ -37,6 +37,7 @@ > > > > typedef struct TqiContext { > > +AVCodecContext *avctx; > > GetBitContext gb; > > @@ -7

[libav-devel] [PATCH] avformat_find_stream_info: move duration guessing after updating codec parameters

2016-03-03 Thread Anton Khirnov
This bitrate might not be known otherwise. Bug-Id: 926 --- libavformat/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index a70746a..31faa95 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2431,8 +2431,6 @@