diff options
author | Marton Balint <cus@passwd.hu> | 2016-12-26 01:06:22 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2017-01-24 23:51:36 +0100 |
commit | 5049f05f27c20f0606209bf3508e1157e0eabc9e (patch) | |
tree | 35fb5f57c11c249b1309f98862a671b7a0a1a8d6 /libavutil/channel_layout.h | |
parent | 6d6faa2a2ded9cc203a9f2d8dcceebbda27a12a4 (diff) | |
download | ffmpeg-5049f05f27c20f0606209bf3508e1157e0eabc9e.tar.gz |
avutil/channel_layout: fix remains of old syntax in docs and comments
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavutil/channel_layout.h')
-rw-r--r-- | libavutil/channel_layout.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavutil/channel_layout.h b/libavutil/channel_layout.h index ec7effead1..38c3337829 100644 --- a/libavutil/channel_layout.h +++ b/libavutil/channel_layout.h @@ -131,17 +131,12 @@ enum AVMatrixEncoding { * 5.0(side), 5.1, 5.1(side), 7.1, 7.1(wide), downmix); * - the name of a single channel (FL, FR, FC, LFE, BL, BR, FLC, FRC, BC, * SL, SR, TC, TFL, TFC, TFR, TBL, TBC, TBR, DL, DR); - * - a number of channels, in decimal, optionally followed by 'c', yielding + * - a number of channels, in decimal, followed by 'c', yielding * the default channel layout for that number of channels (@see * av_get_default_channel_layout); * - a channel layout mask, in hexadecimal starting with "0x" (see the * AV_CH_* macros). * - * @warning Starting from the next major bump the trailing character - * 'c' to specify a number of channels will be required, while a - * channel layout mask could also be specified as a decimal number - * (if and only if not followed by "c"). - * * Example: "stereo+FC" = "2c+FC" = "2c+1c" = "0x7" */ uint64_t av_get_channel_layout(const char *name); |