diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-09-10 18:01:48 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-09-10 18:01:48 +0000 |
commit | bb2d8e9f05b6129b8835f2fbe0dc73e6921412bb (patch) | |
tree | 5ec496c4889e26256d7b77ed751dcaf40060a7ff /libavcodec/aac.h | |
parent | 11198b18db1f12ddce992b8f44b38572714725e1 (diff) | |
download | ffmpeg-bb2d8e9f05b6129b8835f2fbe0dc73e6921412bb.tar.gz |
aacdec: Rework channel mapping compatibility hacks.
For a PCE based configuration map the channels solely based on tags.
For an indexed configuration map the channels solely based on position.
This works with all known exotic samples including al17, elem_id0, bad_concat,
and lfe_is_sce.
Originally committed as revision 25098 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r-- | libavcodec/aac.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h index 94f578ff38..b40d2c0003 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -251,7 +251,6 @@ 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; /** @} */ |