Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodger Combs <rodger.combs@gmail.com>2015-10-08 05:09:26 +0300
committerRodger Combs <rodger.combs@gmail.com>2015-10-10 18:41:10 +0300
commit0d53a6f5b4f5ccebe3f7b4d8cfd440e07affa509 (patch)
treeeda082c1994fc251408a6c094c74f0a326a7f878 /libavcodec/avcodec.h
parent5740dc27e1a633b636ae37ae1f7a2ab71a060486 (diff)
lavc: move bitstream filter args to the bsf ctx
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index ff70d254af..22a68fbfd9 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -5026,6 +5026,11 @@ typedef struct AVBitStreamFilterContext {
struct AVBitStreamFilter *filter;
AVCodecParserContext *parser;
struct AVBitStreamFilterContext *next;
+ /**
+ * Internal default arguments, used if NULL is passed to av_bitstream_filter_filter().
+ * Not for access by library users.
+ */
+ char *args;
} AVBitStreamFilterContext;