diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-08-29 14:37:22 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-08-30 13:56:25 +0200 |
commit | 11d957fbd81288e64408e79ed369446346000b29 (patch) | |
tree | 72c1812a15ab34be2908a01de8fec89c27fad2ea /avconv.h | |
parent | bbcedade008b5471c71122944cf4dee1951138ec (diff) | |
download | ffmpeg-11d957fbd81288e64408e79ed369446346000b29.tar.gz |
avtools: remove the distinction between func_arg and func2_arg.
func2_arg is the same as func_arg, except it has one additional
parameter. Change all func_arg callbacks to take that parameter (and
ignore it).
Diffstat (limited to 'avconv.h')
-rw-r--r-- | avconv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -352,7 +352,7 @@ extern const OptionDef options[]; void reset_options(OptionsContext *o); void show_usage(void); -int opt_cpuflags(const char *opt, const char *arg); +int opt_cpuflags(void *optctx, const char *opt, const char *arg); void opt_output_file(void *optctx, const char *filename); |