diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-05-25 16:42:41 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-06-16 20:24:57 +0200 |
commit | 9ba38229e5bd0cf6201a8206b2d8be6335f45f46 (patch) | |
tree | 8baf5a138c4c8de7abcd6f7c53e840ca6376430c /cmdutils.h | |
parent | 1b9b37b8a416e77b4c6425dcdcee21cf8a1f5d67 (diff) | |
download | ffmpeg-9ba38229e5bd0cf6201a8206b2d8be6335f45f46.tar.gz |
cmdutils: add opt_default2().
It stores options in a dictionary to be passed to new open calls.
It will replace opt_default once all the pieces are in place.
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h index e231b1ff84..02fcea4426 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -43,6 +43,7 @@ extern const char **opt_names; extern AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB]; extern AVFormatContext *avformat_opts; extern struct SwsContext *sws_opts; +extern AVDictionary *format_opts, *video_opts, *audio_opts, *sub_opts; /** * Initialize the cmdutils option system, in particular |