avcodec/ff_h264_decode_sei: Check SEI size
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
80c873a87e
commit
45da7a0e8f
@ -264,6 +264,11 @@ int ff_h264_decode_sei(H264Context *h){
|
|||||||
if(h->avctx->debug&FF_DEBUG_STARTCODE)
|
if(h->avctx->debug&FF_DEBUG_STARTCODE)
|
||||||
av_log(h->avctx, AV_LOG_DEBUG, "SEI %d len:%d\n", type, size);
|
av_log(h->avctx, AV_LOG_DEBUG, "SEI %d len:%d\n", type, size);
|
||||||
|
|
||||||
|
if (size > get_bits_left(&h->gb) / 8) {
|
||||||
|
av_log(h->avctx, AV_LOG_ERROR, "SEI truncated\n");
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
}
|
||||||
|
|
||||||
switch(type){
|
switch(type){
|
||||||
case SEI_TYPE_PIC_TIMING: // Picture timing SEI
|
case SEI_TYPE_PIC_TIMING: // Picture timing SEI
|
||||||
if(decode_picture_timing(h) < 0)
|
if(decode_picture_timing(h) < 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user