# HG changeset patch # User alexc # Date 1258837006 0 # Node ID a0dd118e82aedcb6fd3e5626e254cc2d8d140731 # Parent eb415f52f9f9cb45c8456dc77c990c77a0ef981a 10l: Fix inverted if-condition from r20448. Fixes issue 1562. diff -r eb415f52f9f9 -r a0dd118e82ae aac.c --- a/aac.c Sat Nov 21 09:58:15 2009 +0000 +++ b/aac.c Sat Nov 21 20:56:46 2009 +0000 @@ -1762,7 +1762,7 @@ memset(new_che_pos, 0, 4 * MAX_ELEM_ID * sizeof(new_che_pos[0][0])); if ((err = decode_pce(ac, new_che_pos, &gb))) break; - if (ac->output_configured <= OC_TRIAL_PCE) + if (ac->output_configured > OC_TRIAL_PCE) av_log(avccontext, AV_LOG_ERROR, "Not evaluating a further program_config_element as this construct is dubious at best.\n"); else