summaryrefslogtreecommitdiffstats
path: root/libavcodec/mlpdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-23 19:26:22 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-23 19:39:42 +0100
commit6747b0be9b2a8e20724c6e514b3c8374c32fd6f0 (patch)
treeabd4ec6a6d46098aeb9e2537f7977ed35b904d77 /libavcodec/mlpdec.c
parentd4e5d8d4c264955f3df8c6947b38913f9ee3eb18 (diff)
downloadffmpeg-streaming-6747b0be9b2a8e20724c6e514b3c8374c32fd6f0.zip
ffmpeg-streaming-6747b0be9b2a8e20724c6e514b3c8374c32fd6f0.tar.gz
mlp: fix channel order.
This fixes a regression introduced with todays merge Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mlpdec.c')
-rw-r--r--libavcodec/mlpdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c
index 4532b37..ebd0b48 100644
--- a/libavcodec/mlpdec.c
+++ b/libavcodec/mlpdec.c
@@ -386,7 +386,7 @@ static int read_major_sync(MLPDecodeContext *m, GetBitContext *gb)
}
}
- m->needs_reordering = mh.channels_mlp >= 18 && mh.channels_mlp <= 20;
+ m->needs_reordering = mh.channel_arrangement >= 18 && mh.channel_arrangement <= 20;
return 0;
}
OpenPOWER on IntegriCloud