aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorSergiy Gur'yev <piratfm@ua.fm>2011-11-24 14:53:19 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-11-24 14:48:03 +0100
commit47b5fabd6a4227cb4e978fa8a19ef43d4d9bbec0 (patch)
tree416f8f352d0f9f1e0aa3abc22fd7fd76dc3f3d44 /libavcodec
parent4e9b2c57326fe254d0251fbf268b3481705b4c65 (diff)
downloadffmpeg-47b5fabd6a4227cb4e978fa8a19ef43d4d9bbec0.tar.gz
Fix adts format creation in aac+ encoder modified: libavcodec/libaacplus.c
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 32ed7da1350e551ec005b75e482da74f2e93fbb9)
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/libaacplus.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/libaacplus.c b/libavcodec/libaacplus.c
index c8c87be549..a5ededbf39 100644
--- a/libavcodec/libaacplus.c
+++ b/libavcodec/libaacplus.c
@@ -63,9 +63,7 @@ static av_cold int aacPlus_encode_init(AVCodecContext *avctx)
aacplus_cfg->bitRate = avctx->bit_rate;
aacplus_cfg->bandWidth = avctx->cutoff;
- if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
- aacplus_cfg->outputFormat = 0; //raw aac
- }
+ aacplus_cfg->outputFormat = !(avctx->flags & CODEC_FLAG_GLOBAL_HEADER);
aacplus_cfg->inputFormat = AACPLUS_INPUT_16BIT;
if (!aacplusEncSetConfiguration(s->aacplus_handle, aacplus_cfg)) {
av_log(avctx, AV_LOG_ERROR, "libaacplus doesn't support this output format!\n");