mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Add casts to v210x decoder to avoid warnings.
Originally committed as revision 18994 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9291fdf7bc
commit
b157e3e56b
@ -42,7 +42,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
|
|||||||
int y=0;
|
int y=0;
|
||||||
int width= avctx->width;
|
int width= avctx->width;
|
||||||
AVFrame *pic= avctx->coded_frame;
|
AVFrame *pic= avctx->coded_frame;
|
||||||
const uint32_t *src= avpkt->data;
|
const uint32_t *src= (const uint32_t *)avpkt->data;
|
||||||
uint16_t *ydst, *udst, *vdst, *yend;
|
uint16_t *ydst, *udst, *vdst, *yend;
|
||||||
|
|
||||||
if(pic->data[0])
|
if(pic->data[0])
|
||||||
@ -61,9 +61,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
|
|||||||
if(avctx->get_buffer(avctx, pic) < 0)
|
if(avctx->get_buffer(avctx, pic) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
ydst= pic->data[0];
|
ydst= (uint16_t *)pic->data[0];
|
||||||
udst= pic->data[1];
|
udst= (uint16_t *)pic->data[1];
|
||||||
vdst= pic->data[2];
|
vdst= (uint16_t *)pic->data[2];
|
||||||
yend= ydst + width;
|
yend= ydst + width;
|
||||||
pic->pict_type= FF_I_TYPE;
|
pic->pict_type= FF_I_TYPE;
|
||||||
pic->key_frame= 1;
|
pic->key_frame= 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user