Commit 27d51ee6 authored by alexc's avatar alexc

10l: Fix inverted if-condition from r20448. Fixes issue 1562.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20570 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d39c8a6f
...@@ -1762,7 +1762,7 @@ static int aac_decode_frame(AVCodecContext *avccontext, void *data, ...@@ -1762,7 +1762,7 @@ static int aac_decode_frame(AVCodecContext *avccontext, void *data,
memset(new_che_pos, 0, 4 * MAX_ELEM_ID * sizeof(new_che_pos[0][0])); memset(new_che_pos, 0, 4 * MAX_ELEM_ID * sizeof(new_che_pos[0][0]));
if ((err = decode_pce(ac, new_che_pos, &gb))) if ((err = decode_pce(ac, new_che_pos, &gb)))
break; break;
if (ac->output_configured <= OC_TRIAL_PCE) if (ac->output_configured > OC_TRIAL_PCE)
av_log(avccontext, AV_LOG_ERROR, av_log(avccontext, AV_LOG_ERROR,
"Not evaluating a further program_config_element as this construct is dubious at best.\n"); "Not evaluating a further program_config_element as this construct is dubious at best.\n");
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment