diff options
author | Sergiy Gur'yev <piratfm@ua.fm> | 2011-11-24 14:53:19 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-11-24 14:53:04 +0100 |
commit | 4f58d8ebc1a75f85495e846941d3893508449f16 (patch) | |
tree | 75ea32b02e66661400fecb438a1cb9cd7b5f1297 | |
parent | e66860a66b7237c744d269d60dc49153410b28d8 (diff) | |
download | ffmpeg-4f58d8ebc1a75f85495e846941d3893508449f16.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)
-rw-r--r-- | libavcodec/libaacplus.c | 4 |
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"); |