[FFmpeg-cvslog] mlpdec: check for negative index
Vittorio Giovara
git at videolan.org
Thu Nov 13 14:06:54 CET 2014
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Tue Nov 11 17:40:06 2014 +0100| [2ffb0598dbdb81c40650952aa9299fa02fa5e834] | committer: Vittorio Giovara
mlpdec: check for negative index
CC: libav-stable at libav.org
Bug-Id: CID 970924
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2ffb0598dbdb81c40650952aa9299fa02fa5e834
---
libavcodec/mlpdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c
index 6baf4c1..624efc1 100644
--- a/libavcodec/mlpdec.c
+++ b/libavcodec/mlpdec.c
@@ -552,7 +552,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
ch_assign = av_get_channel_layout_channel_index(s->ch_layout,
channel);
}
- if (ch_assign > s->max_matrix_channel) {
+ if (ch_assign < 0 || ch_assign > s->max_matrix_channel) {
avpriv_request_sample(m->avctx,
"Assignment of matrix channel %d to invalid output channel %d",
ch, ch_assign);
More information about the ffmpeg-cvslog
mailing list