diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-11-11 20:24:23 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-11-11 20:24:23 +0000 |
commit | 5aea268d14b2973188589c89b275d8b248150446 (patch) | |
tree | ab2fca9255ac2087ffd0dbc809cd9bdb9b67231a /libavcodec/mpeg4audio.c | |
parent | f2b7ce8ae68f9d262ce102605532d3520e279a67 (diff) | |
download | ffmpeg-5aea268d14b2973188589c89b275d8b248150446.tar.gz |
Add a channels field to MPEG4AudioConfig.
Originally committed as revision 20512 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg4audio.c')
-rw-r--r-- | libavcodec/mpeg4audio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpeg4audio.c b/libavcodec/mpeg4audio.c index 6c0bc7d76a..8c9657273c 100644 --- a/libavcodec/mpeg4audio.c +++ b/libavcodec/mpeg4audio.c @@ -57,6 +57,8 @@ int ff_mpeg4audio_get_config(MPEG4AudioConfig *c, const uint8_t *buf, int buf_si c->object_type = get_object_type(&gb); c->sample_rate = get_sample_rate(&gb, &c->sampling_index); c->chan_config = get_bits(&gb, 4); + if (c->chan_config < FF_ARRAY_ELEMS(ff_mpeg4audio_channels)) + c->channels = ff_mpeg4audio_channels[c->chan_config]; c->sbr = -1; if (c->object_type == AOT_SBR) { c->ext_object_type = c->object_type; |