diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-02-24 19:07:42 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-24 20:31:56 +0100 |
commit | ad899522ffa7f0039e631b0408a36f23aa84c0e7 (patch) | |
tree | 6a2890728bf42084705e0100bec473570d1071a7 /cmdutils.h | |
parent | f3abdf4392a146462dc679846c061b8bf2b5c7a0 (diff) | |
download | ffmpeg-ad899522ffa7f0039e631b0408a36f23aa84c0e7.tar.gz |
ffmpeg: use a AVDictionary instead of the context to move swr parameters around
This avoids per parameter changes in ffmpeg at the cost of making access
somewhat more annoying.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdutils.h b/cmdutils.h index 3e3d002e7a..08c92ce6ee 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -51,7 +51,7 @@ extern const int this_year; extern AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB]; extern AVFormatContext *avformat_opts; extern struct SwsContext *sws_opts; -extern struct SwrContext *swr_opts; +extern AVDictionary *swr_opts; extern AVDictionary *format_opts, *codec_opts, *resample_opts; /** @@ -255,7 +255,7 @@ typedef struct OptionGroup { AVDictionary *format_opts; AVDictionary *resample_opts; struct SwsContext *sws_opts; - struct SwrContext *swr_opts; + AVDictionary *swr_opts; } OptionGroup; /** |