mirror of https://git.ffmpeg.org/ffmpeg.git
aacdec: Evaluate further PCE elements.
Fixes Music\ Station\ Super\ Live\ -\ 2011.12.23.mkv Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f69a766d11
commit
810a14dbcc
|
@ -2201,10 +2201,11 @@ static int aac_decode_frame_int(AVCodecContext *avctx, void *data,
|
||||||
if ((err = decode_pce(avctx, &ac->m4ac, new_che_pos, gb)))
|
if ((err = decode_pce(avctx, &ac->m4ac, new_che_pos, gb)))
|
||||||
break;
|
break;
|
||||||
if (ac->output_configured > OC_TRIAL_PCE)
|
if (ac->output_configured > OC_TRIAL_PCE)
|
||||||
av_log(avctx, AV_LOG_ERROR,
|
av_log(avctx, AV_LOG_INFO,
|
||||||
"Not evaluating a further program_config_element as this construct is dubious at best.\n");
|
"Evaluating a further program_config_element.\n");
|
||||||
else
|
|
||||||
err = output_configure(ac, ac->che_pos, new_che_pos, 0, OC_TRIAL_PCE);
|
err = output_configure(ac, ac->che_pos, new_che_pos, 0, OC_TRIAL_PCE);
|
||||||
|
if (!err)
|
||||||
|
ac->m4ac.chan_config = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue