Commit 51db77e6 authored by cehoyos's avatar cehoyos

Undo r20874: It broke AAC decoding.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20879 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1ef458a4
......@@ -1645,9 +1645,8 @@ static void apply_channel_coupling(AACContext *ac, ChannelElement *cc,
*/
static void spectral_to_sample(AACContext *ac)
{
enum RawDataBlockType type;
for (type = TYPE_LFE; type >= TYPE_SCE; type--) {
int i;
int i, type;
for (type = 3; type >= 0; type--) {
for (i = 0; i < MAX_ELEM_ID; i++) {
ChannelElement *che = ac->che[type][i];
if (che) {
......
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