diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-04-05 20:11:40 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-04-05 20:11:40 +0000 |
commit | 0091d8a1643e497706cef80b1e6a7a171c3fbf24 (patch) | |
tree | f7550139b000511b0677514c18b248c54fc67c43 /libavcodec/mlpdec.c | |
parent | dd4090256c8c2dc21016cccafeea2598735e8871 (diff) | |
download | ffmpeg-0091d8a1643e497706cef80b1e6a7a171c3fbf24.tar.gz |
mlpdec: matrix_out_ch must not be greater than max_matrix_channel, and not max_channel.
Originally committed as revision 18335 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlpdec.c')
-rw-r--r-- | libavcodec/mlpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index 6d148b4735..8ec78b101d 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -508,7 +508,7 @@ static int read_matrix_params(MLPDecodeContext *m, SubStream *s, GetBitContext * frac_bits = get_bits(gbp, 4); s->lsb_bypass [mat] = get_bits1(gbp); - if (s->matrix_out_ch[mat] > s->max_channel) { + if (s->matrix_out_ch[mat] > s->max_matrix_channel) { av_log(m->avctx, AV_LOG_ERROR, "Invalid channel %d specified as output from matrix.\n", s->matrix_out_ch[mat]); |