diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-28 19:35:22 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-28 19:35:22 +0000 |
commit | 85663ef3020fe95f65c96de73201adac909cd07c (patch) | |
tree | a495e8f361e59087c49fa57b3dd59778e9556ac3 /cmdutils.h | |
parent | df1a4b11342050086bc9724c636f19971cec825c (diff) | |
download | ffmpeg-85663ef3020fe95f65c96de73201adac909cd07c.tar.gz |
Move opt_default() and set_context_opts() to cmdutils so it can be used from
the other tools as well.
Originally committed as revision 15450 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h index 981f0faf1e..2cc2ee26c7 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -34,6 +34,17 @@ extern const char program_name[]; */ extern const int program_birth_year; +extern const char **opt_names; +extern AVCodecContext *avctx_opts[CODEC_TYPE_NB]; +extern AVFormatContext *avformat_opts; +extern struct SwsContext *sws_opts; + +/** + * Fallback for options that are not explixitly handled, these will be + * parsed through AVOptions. + */ +int opt_default(const char *opt, const char *arg); + /** * Parses a string and returns its corresponding value as a double. * Exits from the application if the string cannot be correctly @@ -106,6 +117,8 @@ void show_help_options(const OptionDef *options, const char *msg, int mask, int void parse_options(int argc, char **argv, const OptionDef *options, void (* parse_arg_function)(const char*)); +void set_context_opts(void *ctx, void *opts_ctx, int flags); + void print_error(const char *filename, int err); /** |