opt_default       789 cmdutils.c                 ret = opt_default(NULL, opt, argv[optindex]);
opt_default        90 cmdutils.h     int opt_default(void *optctx, const char *opt, const char *arg);
opt_default       189 ffmpeg_opt.c       return opt_default(optctx, "channel", arg);
opt_default       195 ffmpeg_opt.c       return opt_default(optctx, "standard", arg);
opt_default      2282 ffmpeg_opt.c           opt_default(NULL, "g", norm == PAL ? "15" : "18");
opt_default      2284 ffmpeg_opt.c           opt_default(NULL, "b:v", "1150000");
opt_default      2285 ffmpeg_opt.c           opt_default(NULL, "maxrate", "1150000");
opt_default      2286 ffmpeg_opt.c           opt_default(NULL, "minrate", "1150000");
opt_default      2287 ffmpeg_opt.c           opt_default(NULL, "bufsize", "327680"); // 40*1024*8;
opt_default      2289 ffmpeg_opt.c           opt_default(NULL, "b:a", "224000");
opt_default      2293 ffmpeg_opt.c           opt_default(NULL, "packetsize", "2324");
opt_default      2294 ffmpeg_opt.c           opt_default(NULL, "muxrate", "1411200"); // 2352 * 75 * 8;
opt_default      2311 ffmpeg_opt.c           opt_default(NULL, "g", norm == PAL ? "15" : "18");
opt_default      2313 ffmpeg_opt.c           opt_default(NULL, "b:v", "2040000");
opt_default      2314 ffmpeg_opt.c           opt_default(NULL, "maxrate", "2516000");
opt_default      2315 ffmpeg_opt.c           opt_default(NULL, "minrate", "0"); // 1145000;
opt_default      2316 ffmpeg_opt.c           opt_default(NULL, "bufsize", "1835008"); // 224*1024*8;
opt_default      2317 ffmpeg_opt.c           opt_default(NULL, "scan_offset", "1");
opt_default      2319 ffmpeg_opt.c           opt_default(NULL, "b:a", "224000");
opt_default      2322 ffmpeg_opt.c           opt_default(NULL, "packetsize", "2324");
opt_default      2333 ffmpeg_opt.c           opt_default(NULL, "g", norm == PAL ? "15" : "18");
opt_default      2335 ffmpeg_opt.c           opt_default(NULL, "b:v", "6000000");
opt_default      2336 ffmpeg_opt.c           opt_default(NULL, "maxrate", "9000000");
opt_default      2337 ffmpeg_opt.c           opt_default(NULL, "minrate", "0"); // 1500000;
opt_default      2338 ffmpeg_opt.c           opt_default(NULL, "bufsize", "1835008"); // 224*1024*8;
opt_default      2340 ffmpeg_opt.c           opt_default(NULL, "packetsize", "2048");  // from www.mpucoder.com: DVD sectors contain 2048 bytes of data, this is also the size of one pack.
opt_default      2341 ffmpeg_opt.c           opt_default(NULL, "muxrate", "10080000"); // from mplex project: data_rate = 1260000. mux_rate = data_rate * 8
opt_default      2343 ffmpeg_opt.c           opt_default(NULL, "b:a", "448000");
opt_default      2413 ffmpeg_opt.c       ret = opt_default(NULL, opt, arg);
opt_default      3573 ffplay.c           return opt_default(NULL, "video_size", arg);
opt_default      3601 ffplay.c           return opt_default(NULL, "pixel_format", arg);
opt_default      3714 ffplay.c           { "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, { .func_arg = opt_default }, "generic catch all option", "" },
opt_default      3030 ffprobe.c          { "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {.func_arg = opt_default}, "generic catch all option", "" },