You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/lcldec: initialize encoded correctly
Fixes out of array read Fixes: yuv111_no_compr_crash.avi Found-by: Piotr Bandurski <ami_stuff@o2.pl> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -171,7 +171,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac
|
|||||||
LclDecContext * const c = avctx->priv_data;
|
LclDecContext * const c = avctx->priv_data;
|
||||||
unsigned int pixel_ptr;
|
unsigned int pixel_ptr;
|
||||||
int row, col;
|
int row, col;
|
||||||
unsigned char *encoded, *outptr;
|
unsigned char *encoded = avpkt->data, *outptr;
|
||||||
uint8_t *y_out, *u_out, *v_out;
|
uint8_t *y_out, *u_out, *v_out;
|
||||||
unsigned int width = avctx->width; // Real image width
|
unsigned int width = avctx->width; // Real image width
|
||||||
unsigned int height = avctx->height; // Real image height
|
unsigned int height = avctx->height; // Real image height
|
||||||
|
Reference in New Issue
Block a user