summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorTim Walker <tdskywalker@gmail.com>2012-02-22 15:43:22 +0100
committerJustin Ruggles <justin.ruggles@gmail.com>2012-02-22 10:50:06 -0500
commit147715ca10c1ea0b7a020933311d6a2615d684c9 (patch)
treea12c4ac0346e4ab7f9fe15c0f0aff8f26e039c6e /libavutil
parent0c7b8b758aa3038451bba5ce8f0d3ef1fad8649f (diff)
Add channel names to channel_names[] array for channels added in b2890f5
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/audioconvert.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavutil/audioconvert.c b/libavutil/audioconvert.c
index 83f2d7c762..0a83b05ad9 100644
--- a/libavutil/audioconvert.c
+++ b/libavutil/audioconvert.c
@@ -48,6 +48,10 @@ static const char * const channel_names[] = {
[17] = "TBR", /* top back right */
[29] = "DL", /* downmix left */
[30] = "DR", /* downmix right */
+ [31] = "WL", /* wide left */
+ [32] = "WR", /* wide right */
+ [33] = "SDL", /* surround direct left */
+ [34] = "SDR", /* surround direct right */
};
static const char *get_channel_name(int channel_id)