diff options
author | Tim Walker <tdskywalker@gmail.com> | 2012-09-12 17:09:31 +0200 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-09-12 18:26:53 -0400 |
commit | 8919fee7d259a4f8feb2aac6941ac21915be7b6e (patch) | |
tree | c5d62bb0cd103c5eca2ca44d6fe4ce9253956590 /libavutil/audioconvert.c | |
parent | 07584eaf4a95db3f11d3bc411f9786932829e82b (diff) | |
download | ffmpeg-8919fee7d259a4f8feb2aac6941ac21915be7b6e.tar.gz |
lavu/audioconvert: add a second low frequency channel.
Can be used by DTS-HD, TrueHD and E-AC-3, among others.
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
Diffstat (limited to 'libavutil/audioconvert.c')
-rw-r--r-- | libavutil/audioconvert.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/audioconvert.c b/libavutil/audioconvert.c index 09750ff435..113b9d782d 100644 --- a/libavutil/audioconvert.c +++ b/libavutil/audioconvert.c @@ -53,6 +53,7 @@ static const char * const channel_names[] = { [32] = "WR", /* wide right */ [33] = "SDL", /* surround direct left */ [34] = "SDR", /* surround direct right */ + [35] = "LFE2", /* low frequency 2 */ }; static const char *get_channel_name(int channel_id) |