summaryrefslogtreecommitdiffstats
path: root/libavcodec/wmalosslessdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-02-19 19:13:09 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-02-19 19:13:18 +0100
commit04f7eee70908ffdffd55e159a9a37a07fdf9187e (patch)
tree65468e36c8b92407c4fa0aeb1e53a0d382337c34 /libavcodec/wmalosslessdec.c
parentd9b3097ba2d4b215b95481dcd92ce88b4ffae6da (diff)
parenta520a9946f25fe36000558cf8bb512109ea40353 (diff)
downloadffmpeg-streaming-04f7eee70908ffdffd55e159a9a37a07fdf9187e.zip
ffmpeg-streaming-04f7eee70908ffdffd55e159a9a37a07fdf9187e.tar.gz
Merge remote-tracking branch 'shariman/wmall'
* shariman/wmall: Perform inter-channel decorr. only if both channels are coded Use fixed-length array in revert_mclms() Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/wmalosslessdec.c')
-rw-r--r--libavcodec/wmalosslessdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c
index 9f1e328..95e8cf2 100644
--- a/libavcodec/wmalosslessdec.c
+++ b/libavcodec/wmalosslessdec.c
@@ -885,7 +885,7 @@ static void mclms_predict(WmallDecodeCtx *s, int icoef, int *pred)
static void revert_mclms(WmallDecodeCtx *s, int tile_size)
{
- int icoef, pred[s->num_channels];
+ int icoef, pred[WMALL_MAX_CHANNELS] = {0};
for (icoef = 0; icoef < tile_size; icoef++) {
mclms_predict(s, icoef, pred);
mclms_update(s, icoef, pred);
@@ -1025,7 +1025,7 @@ static void revert_inter_ch_decorr(WmallDecodeCtx *s, int tile_size)
int icoef;
if (s->num_channels != 2)
return;
- else {
+ else if (s->is_channel_coded[0] && s->is_channel_coded[1]) {
for (icoef = 0; icoef < tile_size; icoef++) {
s->channel_residues[0][icoef] -= s->channel_residues[1][icoef] >> 1;
s->channel_residues[1][icoef] += s->channel_residues[0][icoef];
OpenPOWER on IntegriCloud