diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-06-03 02:17:49 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-06-03 02:17:49 +0000 |
commit | 7caee063a0b71a2b9bdd21f508bb39b6b7a83ceb (patch) | |
tree | 34e040d2210b3ccc8af301165bdc6886b348ed13 /libavcodec/aac.h | |
parent | c0f8ee0fd73ad4f672855a0b083155172fe20c7f (diff) | |
download | ffmpeg-7caee063a0b71a2b9bdd21f508bb39b6b7a83ceb.tar.gz |
aacdec: Work around illegal files with all elem_id tags set to the same value.
Fixes issue 1882.
Originally committed as revision 23439 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r-- | libavcodec/aac.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h index 1a8aa6c145..3f3f783dd5 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -257,6 +257,7 @@ typedef struct { */ ChannelElement * che[4][MAX_ELEM_ID]; ChannelElement * tag_che_map[4][MAX_ELEM_ID]; + uint8_t tags_seen_this_frame[4][MAX_ELEM_ID]; int tags_mapped; /** @} */ |