Browse Source

avcodec/m101: Check BPS value

Fixes null pointer dereference
Fixes Ticket5520

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1
Michael Niedermayer 9 years ago
parent
commit
42ee137a0a
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      libavcodec/m101.c

+ 5
- 2
libavcodec/m101.c View File

@@ -31,9 +31,12 @@ static av_cold int m101_decode_init(AVCodecContext *avctx)

if (avctx->extradata[2*4] == 10)
avctx->pix_fmt = AV_PIX_FMT_YUV422P10;
else
else if (avctx->extradata[2*4] == 8) {
avctx->pix_fmt = AV_PIX_FMT_YUYV422;

} else {
avpriv_request_sample(avctx, "BPS %d\n", avctx->extradata[2*4]);
return AVERROR_INVALIDDATA;
}

return 0;
}


Loading…
Cancel
Save