mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/lcldec: fix decoding with AVFrame's negative linesize
This commit is contained in:
parent
445167d5fd
commit
87cf1be905
|
@ -167,7 +167,7 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *frame,
|
||||||
const uint8_t *buf = avpkt->data;
|
const uint8_t *buf = avpkt->data;
|
||||||
int buf_size = avpkt->size;
|
int buf_size = avpkt->size;
|
||||||
LclDecContext * const c = avctx->priv_data;
|
LclDecContext * const c = avctx->priv_data;
|
||||||
unsigned int pixel_ptr;
|
ptrdiff_t pixel_ptr;
|
||||||
int row, col;
|
int row, col;
|
||||||
unsigned char *encoded = avpkt->data, *outptr;
|
unsigned char *encoded = avpkt->data, *outptr;
|
||||||
uint8_t *y_out, *u_out, *v_out;
|
uint8_t *y_out, *u_out, *v_out;
|
||||||
|
|
Loading…
Reference in New Issue