Searched refs:opt_default (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/fftools/ |
D | ffmpeg_opt.c | 314 return opt_default(optctx, "channel", arg); in opt_video_channel() 320 return opt_default(optctx, "standard", arg); in opt_video_standard() 2863 opt_default(NULL, "g", norm == PAL ? "15" : "18"); in opt_target() 2865 opt_default(NULL, "b:v", "1150000"); in opt_target() 2866 opt_default(NULL, "maxrate:v", "1150000"); in opt_target() 2867 opt_default(NULL, "minrate:v", "1150000"); in opt_target() 2868 opt_default(NULL, "bufsize:v", "327680"); // 40*1024*8; in opt_target() 2870 opt_default(NULL, "b:a", "224000"); in opt_target() 2874 opt_default(NULL, "packetsize", "2324"); in opt_target() 2875 opt_default(NULL, "muxrate", "1411200"); // 2352 * 75 * 8; in opt_target() [all …]
|
D | cmdutils.h | 95 int opt_default(void *optctx, const char *opt, const char *arg);
|
D | cmdutils.c | 541 int opt_default(void *optctx, const char *opt, const char *arg) in opt_default() function 819 ret = opt_default(NULL, opt, argv[optindex]); in split_commandline()
|
D | ffplay.c | 3480 return opt_default(NULL, "video_size", arg); in opt_frame_size() 3508 return opt_default(NULL, "pixel_format", arg); in opt_frame_pix_fmt() 3627 …{ "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, { .func_arg = opt_default }, "generic c…
|
D | ffprobe.c | 3640 …{ "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {.func_arg = opt_default}, "generic cat…
|