lavc: add support for filtering packets before decoding

This commit is contained in:
Anton Khirnov
2016-11-12 17:43:55 +01:00
parent 061a0c14bb
commit 972c71e9cb
6 changed files with 169 additions and 12 deletions

View File

@@ -3243,6 +3243,12 @@ typedef struct AVCodec {
* See FF_CODEC_CAP_* in internal.h
*/
int caps_internal;
/**
* Decoding only, a comma-separated list of bitstream filters to apply to
* packets before decoding.
*/
const char *bsfs;
} AVCodec;
/**