diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-03-06 19:47:01 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-03-06 19:47:01 +0000 |
commit | bb5c0988eac1d75245675d92554b9a0ef4124b5c (patch) | |
tree | d8930b77d3c184eb24bbfad637ec9e27d7d79c76 /libavcodec/aac.h | |
parent | 711dae776f710ff12c7992dbf1028e42fd35b7ef (diff) | |
download | ffmpeg-bb5c0988eac1d75245675d92554b9a0ef4124b5c.tar.gz |
Fix the channel allocation bug/assumption (issue 800).
Approved by Rob on IRC.
Originally committed as revision 17856 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r-- | libavcodec/aac.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h index 66b2e22d0e..32e7224c47 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -260,6 +260,8 @@ typedef struct { * first index as the first 4 raw data block types */ ChannelElement * che[4][MAX_ELEM_ID]; + ChannelElement * tag_che_map[4][MAX_ELEM_ID]; + int tags_mapped; /** @} */ /** |