Home
last modified time | relevance | path

Searched refs:func_arg (Results 1 – 11 of 11) sorted by relevance

/third_party/ffmpeg/fftools/
Dcmdutils.h185 int (*func_arg)(void *, const char *, const char *); member
206 …{ "sources" , OPT_EXIT | HAS_ARG, { .func_arg = show_sources }, …
208 …{ "sinks" , OPT_EXIT | HAS_ARG, { .func_arg = show_sinks }, …
216 …{ "L", OPT_EXIT, { .func_arg = show_license }, "show license" }, …
217 …{ "h", OPT_EXIT, { .func_arg = show_help }, "show help", "topic" }, …
218 …{ "?", OPT_EXIT, { .func_arg = show_help }, "show help", "topic" }, …
219 …{ "help", OPT_EXIT, { .func_arg = show_help }, "show help", "topic" }, …
220 …{ "-help", OPT_EXIT, { .func_arg = show_help }, "show help", "topic" }, …
221 …{ "version", OPT_EXIT, { .func_arg = show_version }, "show version" }, …
222 …{ "buildconf", OPT_EXIT, { .func_arg = show_buildconf }, "show build configuration…
[all …]
Dffmpeg_opt.c3451 OPT_OUTPUT, { .func_arg = opt_map },
3454 …{ "map_channel", HAS_ARG | OPT_EXPERT | OPT_PERFILE | OPT_OUTPUT, { .func_arg = opt_map_channel…
3489 …{ "timestamp", HAS_ARG | OPT_PERFILE | OPT_OUTPUT, { .func_arg = opt_recording_times…
3496 … OPT_OUTPUT, { .func_arg = opt_data_frames },
3502 { "progress", HAS_ARG | OPT_EXPERT, { .func_arg = opt_progress },
3506 { "timelimit", HAS_ARG | OPT_EXPERT, { .func_arg = opt_timelimit },
3515 { "target", HAS_ARG | OPT_PERFILE | OPT_OUTPUT, { .func_arg = opt_target },
3518 { "vsync", HAS_ARG | OPT_EXPERT, { .func_arg = opt_vsync },
3547 { "abort_on", HAS_ARG | OPT_EXPERT, { .func_arg = opt_abort_on },
3563 OPT_OUTPUT, { .func_arg = opt_qscale },
[all …]
Dffprobe.c3600 { "f", HAS_ARG, {.func_arg = opt_format}, "force format", "format" },
3607 { "pretty", 0, {.func_arg = opt_pretty},
3613 …{ "sections", OPT_EXIT, {.func_arg = opt_sections}, "print sections structure and section informat…
3616 { "show_error", 0, { .func_arg = &opt_show_error }, "show probing error" },
3617 { "show_format", 0, { .func_arg = &opt_show_format }, "show format/container info" },
3618 { "show_frames", 0, { .func_arg = &opt_show_frames }, "show frames info" },
3619 { "show_format_entry", HAS_ARG, {.func_arg = opt_show_format_entry},
3621 { "show_entries", HAS_ARG, {.func_arg = opt_show_entries},
3626 { "show_packets", 0, { .func_arg = &opt_show_packets }, "show packets info" },
3627 { "show_programs", 0, { .func_arg = &opt_show_programs }, "show programs info" },
[all …]
Dffplay.c3586 { "x", HAS_ARG, { .func_arg = opt_width }, "force displayed width", "width" },
3587 { "y", HAS_ARG, { .func_arg = opt_height }, "force displayed height", "height" },
3588 …{ "s", HAS_ARG | OPT_VIDEO, { .func_arg = opt_frame_size }, "set frame size (WxH or abbreviation)"…
3596 { "ss", HAS_ARG, { .func_arg = opt_seek }, "seek to a given position in seconds", "pos" },
3597 …{ "t", HAS_ARG, { .func_arg = opt_duration }, "play \"duration\" seconds of audio/video", "durati…
3604 { "f", HAS_ARG, { .func_arg = opt_format }, "force format", "fmt" },
3605 …{ "pix_fmt", HAS_ARG | OPT_EXPERT | OPT_VIDEO, { .func_arg = opt_frame_pix_fmt }, "set pixel forma…
3611 …{ "sync", HAS_ARG | OPT_EXPERT, { .func_arg = opt_sync }, "set audio-video sync. type (type=audio/…
3622 …{ "vf", OPT_EXPERT | HAS_ARG, { .func_arg = opt_add_vfilter }, "set video filters", "filter_graph"…
3626 …{ "showmode", HAS_ARG, { .func_arg = opt_show_mode}, "select show mode (0 = video, 1 = waves, 2 = …
[all …]
Dcmdutils.c331 } else if (po->u.func_arg) { in write_option()
332 int ret = po->u.func_arg(optctx, opt, arg); in write_option()
/third_party/skia/third_party/externals/spirv-cross/shaders/legacy/vert/
Dswitch-nested.legacy.vert5 int func_arg;
27 gl_Position = test_func(func_arg != 0);
/third_party/skia/third_party/externals/spirv-cross/reference/shaders/legacy/vert/
Dswitch-nested.legacy.vert5 int func_arg;
38 bool param = _34.func_arg != 0;
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders/legacy/vert/
Dswitch-nested.legacy.vert5 int func_arg;
16 if (_34.func_arg != 0)
/third_party/selinux/libsepol/src/
Ddebug.h36 channel_arg, func_arg, ...) do { \ argument
39 _sepol_h->msg_fname = func_arg; \
/third_party/openssl/crypto/lhash/
Dlhash.c179 OPENSSL_LH_DOALL_FUNCARG func_arg, void *arg) in doall_util_fn() argument
196 func_arg(a->data, arg); in doall_util_fn()
/third_party/python/Python/
Dthread_pthread.h245 void *func_arg = callback->arg; in pythread_wrapper() local
248 func(func_arg); in pythread_wrapper()