diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-07-30 00:34:01 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-28 15:09:49 +0200 |
commit | 786dadc014fd2bb690ec254272c809c1d3f41866 (patch) | |
tree | 990cb9c2875df6afe99a858124eb5df6aa28f3b1 /cmdutils_common_opts.h | |
parent | 61e262f6d7b86172d56b8363dfc105f70261d233 (diff) | |
download | ffmpeg-786dadc014fd2bb690ec254272c809c1d3f41866.tar.gz |
cmdutils: add -layouts option.
Extract of the output:
| Individual channels:
| NAME DESCRIPTION
| FL front left
| FR front right
| <snip>
| SDR surround direct right
|
| Standard channel layouts:
| NAME DECOMPOSITION
| mono FC
| stereo FL+FR
| <snip>
| octagonal FL+FR+FC+BL+BR+BC+SL+SR
| downmix DL+DR
Diffstat (limited to 'cmdutils_common_opts.h')
-rw-r--r-- | cmdutils_common_opts.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmdutils_common_opts.h b/cmdutils_common_opts.h index b4892bbfe6..bfd71feb7d 100644 --- a/cmdutils_common_opts.h +++ b/cmdutils_common_opts.h @@ -12,6 +12,7 @@ { "protocols" , OPT_EXIT, {.func_arg = show_protocols}, "show available protocols" }, { "filters" , OPT_EXIT, {.func_arg = show_filters }, "show available filters" }, { "pix_fmts" , OPT_EXIT, {.func_arg = show_pix_fmts }, "show available pixel formats" }, + { "layouts" , OPT_EXIT, {.func_arg = show_layouts }, "show standard channel layouts" }, { "sample_fmts", OPT_EXIT, {.func_arg = show_sample_fmts }, "show available audio sample formats" }, { "loglevel" , HAS_ARG, {.func_arg = opt_loglevel}, "set libav* logging level", "loglevel" }, { "v", HAS_ARG, {.func_arg = opt_loglevel}, "set libav* logging level", "loglevel" }, |