mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
lavc/rawdec: add assertion check in raw_decode()
Check on an implicit assumption done on the number of coded bits for paletted rawvideo with coded bits == 2.
This commit is contained in:
parent
17a54f5de8
commit
ab7dbdc92c
@ -27,6 +27,7 @@
|
||||
#include "avcodec.h"
|
||||
#include "imgconvert.h"
|
||||
#include "raw.h"
|
||||
#include "libavutil/avassert.h"
|
||||
#include "libavutil/intreadwrite.h"
|
||||
#include "libavutil/imgutils.h"
|
||||
#include "libavutil/opt.h"
|
||||
@ -179,6 +180,7 @@ static int raw_decode(AVCodecContext *avctx,
|
||||
}
|
||||
linesize_align = 8;
|
||||
} else {
|
||||
av_assert0(avctx->bits_per_coded_sample == 2);
|
||||
for(i=0; 4*i+3 < buf_size && i<avpkt->size; i++){
|
||||
dst[4*i+0]= buf[i]>>6;
|
||||
dst[4*i+1]= buf[i]>>4&3;
|
||||
|
Loading…
Reference in New Issue
Block a user