Browse Source

h261: check the mtype index

Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable@libav.org
tags/n2.1
Luca Barbato 12 years ago
parent
commit
c59967fa7c
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavcodec/h261dec.c

+ 5
- 0
libavcodec/h261dec.c View File

@@ -376,6 +376,11 @@ static int h261_decode_mb(H261Context *h)

// Read mtype
h->mtype = get_vlc2(&s->gb, h261_mtype_vlc.table, H261_MTYPE_VLC_BITS, 2);
if (h->mtype < 0 || h->mtype >= FF_ARRAY_ELEMS(ff_h261_mtype_map)) {
av_log(s->avctx, AV_LOG_ERROR, "Invalid mtype index %d\n",
h->mtype);
return SLICE_ERROR;
}
h->mtype = ff_h261_mtype_map[h->mtype];

// Read mquant


Loading…
Cancel
Save