diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-12-02 09:12:05 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-12-02 09:12:05 +0000 |
commit | 4fab6627697100ccc3135a13f4d0eb483cbe3227 (patch) | |
tree | a1f0a87392c5116368fef04b5a417f057c5559d1 /libavcodec/aac.c | |
parent | 38610d92ff1f3103422b8ceec70e5fbeb942a15c (diff) | |
download | ffmpeg-4fab6627697100ccc3135a13f4d0eb483cbe3227.tar.gz |
AAC: Add a global header but output not locked output configuration status.
Originally committed as revision 20701 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r-- | libavcodec/aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index ad5de7c5c7..6b2c4169d7 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -390,7 +390,7 @@ static int decode_ga_specific_config(AACContext *ac, GetBitContext *gb, if ((ret = set_default_channel_config(ac, new_che_pos, channel_config))) return ret; } - if ((ret = output_configure(ac, ac->che_pos, new_che_pos, channel_config, OC_LOCKED))) + if ((ret = output_configure(ac, ac->che_pos, new_che_pos, channel_config, OC_GLOBAL_HDR))) return ret; if (extension_flag) { |