/third_party/ffmpeg/fftools/ |
D | cmdutils.h | 89 int opt_cpuflags(void *optctx, const char *opt, const char *arg); 95 int opt_default(void *optctx, const char *opt, const char *arg); 100 int opt_loglevel(void *optctx, const char *opt, const char *arg); 102 int opt_report(void *optctx, const char *opt, const char *arg); 104 int opt_max_alloc(void *optctx, const char *opt, const char *arg); 106 int opt_codec_debug(void *optctx, const char *opt, const char *arg); 111 int opt_timelimit(void *optctx, const char *opt, const char *arg); 260 int show_help(void *optctx, const char *opt, const char *arg); 274 void parse_options(void *optctx, int argc, char **argv, const OptionDef *options, 275 void (* parse_arg_function)(void *optctx, const char*)); [all …]
|
D | cmdutils.c | 291 static int write_option(void *optctx, const OptionDef *po, const char *opt, in write_option() argument 297 (uint8_t *)optctx + po->u.off : po->u.dst_ptr; in write_option() 332 int ret = po->u.func_arg(optctx, opt, arg); in write_option() 346 int parse_option(void *optctx, const char *opt, const char *arg, in parse_option() argument 372 ret = write_option(optctx, po, opt, arg); in parse_option() 379 void parse_options(void *optctx, int argc, char **argv, const OptionDef *options, in parse_options() argument 400 if ((ret = parse_option(optctx, opt, argv[optindex], options)) < 0) in parse_options() 405 parse_arg_function(optctx, opt); in parse_options() 410 int parse_optgroup(void *optctx, OptionGroup *g) in parse_optgroup() argument 433 ret = write_option(optctx, o->opt, o->key, o->val); in parse_optgroup() [all …]
|
D | ffmpeg_opt.c | 238 static int show_hwaccels(void *optctx, const char *opt, const char *arg) in show_hwaccels() argument 268 static int opt_abort_on(void *optctx, const char *opt, const char *arg) in opt_abort_on() argument 287 static int opt_stats_period(void *optctx, const char *opt, const char *arg) in opt_stats_period() argument 302 static int opt_sameq(void *optctx, const char *opt, const char *arg) in opt_sameq() argument 311 static int opt_video_channel(void *optctx, const char *opt, const char *arg) in opt_video_channel() argument 314 return opt_default(optctx, "channel", arg); in opt_video_channel() 317 static int opt_video_standard(void *optctx, const char *opt, const char *arg) in opt_video_standard() argument 320 return opt_default(optctx, "standard", arg); in opt_video_standard() 323 static int opt_audio_codec(void *optctx, const char *opt, const char *arg) in opt_audio_codec() argument 325 OptionsContext *o = optctx; in opt_audio_codec() [all …]
|
D | ffprobe.c | 3249 static int opt_format(void *optctx, const char *opt, const char *arg) in opt_format() argument 3293 static int opt_show_entries(void *optctx, const char *opt, const char *arg) in opt_show_entries() argument 3343 static int opt_show_format_entry(void *optctx, const char *opt, const char *arg) in opt_show_format_entry() argument 3354 ret = opt_show_entries(optctx, opt, buf); in opt_show_format_entry() 3359 static void opt_input_file(void *optctx, const char *arg) in opt_input_file() argument 3372 static int opt_input_file_i(void *optctx, const char *opt, const char *arg) in opt_input_file_i() argument 3374 opt_input_file(optctx, arg); in opt_input_file_i() 3378 static int opt_print_filename(void *optctx, const char *opt, const char *arg) in opt_print_filename() argument 3530 static int opt_read_intervals(void *optctx, const char *opt, const char *arg) in opt_read_intervals() argument 3535 static int opt_pretty(void *optctx, const char *opt, const char *arg) in opt_pretty() argument [all …]
|
D | ffplay.c | 398 static int opt_add_vfilter(void *optctx, const char *opt, const char *arg) in opt_add_vfilter() argument 3477 static int opt_frame_size(void *optctx, const char *opt, const char *arg) in opt_frame_size() argument 3483 static int opt_width(void *optctx, const char *opt, const char *arg) in opt_width() argument 3489 static int opt_height(void *optctx, const char *opt, const char *arg) in opt_height() argument 3495 static int opt_format(void *optctx, const char *opt, const char *arg) in opt_format() argument 3505 static int opt_frame_pix_fmt(void *optctx, const char *opt, const char *arg) in opt_frame_pix_fmt() argument 3511 static int opt_sync(void *optctx, const char *opt, const char *arg) in opt_sync() argument 3526 static int opt_seek(void *optctx, const char *opt, const char *arg) in opt_seek() argument 3532 static int opt_duration(void *optctx, const char *opt, const char *arg) in opt_duration() argument 3538 static int opt_show_mode(void *optctx, const char *opt, const char *arg) in opt_show_mode() argument [all …]
|