OSDN Git Service

aacenc_pred: only print predictor information if profile is aac_main
authorRostislav Pehlivanov <atomnuker@gmail.com>
Sat, 17 Oct 2015 01:15:44 +0000 (02:15 +0100)
committerRostislav Pehlivanov <atomnuker@gmail.com>
Sat, 17 Oct 2015 01:31:20 +0000 (02:31 +0100)
Needed because LTP uses predictor_present as well.

libavcodec/aacenc_pred.c

index 293f9d8..d76a575 100644 (file)
@@ -333,7 +333,8 @@ void ff_aac_encode_main_pred(AACEncContext *s, SingleChannelElement *sce)
     IndividualChannelStream *ics = &sce->ics;
     const int pmax = FFMIN(ics->max_sfb, ff_aac_pred_sfb_max[s->samplerate_index]);
 
-    if (!ics->predictor_present)
+    if (s->profile != FF_PROFILE_AAC_MAIN ||
+        !ics->predictor_present)
         return;
 
     put_bits(&s->pb, 1, !!ics->predictor_reset_group);