diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-07-10 21:53:04 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-07-10 21:53:04 +0000 |
commit | 6308765cb554f7bbc675376915f38d9c8e0706ab (patch) | |
tree | f7d543877ee0aa20b515063c54e775e2efaa9dfc /libavcodec/aac.h | |
parent | c8ec2f1cb8b0cdea17a94468b89b66334f5f523e (diff) | |
download | ffmpeg-6308765cb554f7bbc675376915f38d9c8e0706ab.tar.gz |
Ignore subsequent channel configurations after the first in an AAC file. The
current code doesn't handle them properly, and they are a dubious construction
at best.
Originally committed as revision 19399 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 1d24a59667..cd295499ed 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -274,6 +274,8 @@ typedef struct { /** @} */ DECLARE_ALIGNED(16, float, temp[128]); + + int output_configured; } AACContext; #endif /* AVCODEC_AAC_H */ |