Re: [libav-devel] [PATCH 6/9] lavc: add support for filtering packets before decoding

2016-11-22 Thread Diego Biurrun
On Tue, Nov 22, 2016 at 02:36:36PM +0100, Anton Khirnov wrote: > --- a/libavcodec/avcodec.h > +++ b/libavcodec/avcodec.h > @@ -3235,6 +3235,12 @@ typedef struct AVCodec { > * See FF_CODEC_CAP_* in internal.h > */ > int caps_internal; > + > +/** > + * Decoding only, a

[libav-devel] [PATCH 6/9] lavc: add support for filtering packets before decoding

2016-11-22 Thread Anton Khirnov
--- configure | 1 + libavcodec/avcodec.h | 6 ++ libavcodec/decode.c | 172 ++ libavcodec/internal.h | 8 +++ libavcodec/utils.c| 2 + 5 files changed, 177 insertions(+), 12 deletions(-) diff --git a/configure