diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-08 12:43:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-08 13:24:52 +0200 |
commit | 165fb7eba80c3829fbdadd2f5da47f081294613b (patch) | |
tree | 80fa4a0f5210684d8ba7b3d66811305aa8978229 /cmdutils.h | |
parent | 41e733c1ef201f9dbfc51635519fb7632835fda7 (diff) | |
download | ffmpeg-165fb7eba80c3829fbdadd2f5da47f081294613b.tar.gz |
cmdutils: Export all sws options using a AVDictionary like the other subsystems do
This makes extracting options other than sws_flags easier
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h index 55134ff27b..842c78206e 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -47,6 +47,7 @@ extern const int program_birth_year; extern AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB]; extern AVFormatContext *avformat_opts; extern struct SwsContext *sws_opts; +extern AVDictionary *sws_dict; extern AVDictionary *swr_opts; extern AVDictionary *format_opts, *codec_opts, *resample_opts; extern int hide_banner; @@ -278,6 +279,7 @@ typedef struct OptionGroup { AVDictionary *format_opts; AVDictionary *resample_opts; struct SwsContext *sws_opts; + AVDictionary *sws_dict; AVDictionary *swr_opts; } OptionGroup; |