diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index ba641f30a3..a7ae07b412 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -231,6 +231,10 @@ void ff_write_quant_matrix(PutBitContext *pb, int16_t *matrix){ const uint8_t *ff_find_start_code(const uint8_t * restrict p, const uint8_t *end, uint32_t * restrict state){ int i; + assert(p<=end); + if(p>=end) + return end; + for(i=0; i<3; i++){ uint32_t tmp= *state << 8; *state= tmp + *(p++);