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.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.h')
-rw-r--r-- | cmdutils.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h index fc36331cb1..e3638a97fe 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -360,6 +360,13 @@ int show_protocols(const char *opt, const char *arg); int show_pix_fmts(const char *opt, const char *arg); /** + * Print a listing containing all the standard channel layouts supported by + * the program. + * This option processing function does not utilize the arguments. + */ +int show_layouts(const char *opt, const char *arg); + +/** * Print a listing containing all the sample formats supported by the * program. */ |