mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Replace deprecated FF_I_TYPE with AV_PICTURE_TYPE_I in v308 and yuv4.
Found-by: Paul B Mahol
This commit is contained in:
parent
17edc370b2
commit
84ce58faf5
@ -62,7 +62,7 @@ static int v308_decode_frame(AVCodecContext *avctx, void *data,
|
||||
}
|
||||
|
||||
pic->key_frame = 1;
|
||||
pic->pict_type = FF_I_TYPE;
|
||||
pic->pict_type = AV_PICTURE_TYPE_I;
|
||||
|
||||
y = pic->data[0];
|
||||
u = pic->data[1];
|
||||
|
@ -56,7 +56,7 @@ static int v308_encode_frame(AVCodecContext *avctx, uint8_t *buf,
|
||||
|
||||
avctx->coded_frame->reference = 0;
|
||||
avctx->coded_frame->key_frame = 1;
|
||||
avctx->coded_frame->pict_type = FF_I_TYPE;
|
||||
avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
|
||||
|
||||
y = pic->data[0];
|
||||
u = pic->data[1];
|
||||
|
@ -60,7 +60,7 @@ static int yuv4_decode_frame(AVCodecContext *avctx, void *data,
|
||||
}
|
||||
|
||||
pic->key_frame = 1;
|
||||
pic->pict_type = FF_I_TYPE;
|
||||
pic->pict_type = AV_PICTURE_TYPE_I;
|
||||
|
||||
y = pic->data[0];
|
||||
u = pic->data[1];
|
||||
|
@ -50,7 +50,7 @@ static int yuv4_encode_frame(AVCodecContext *avctx, uint8_t *buf,
|
||||
|
||||
avctx->coded_frame->reference = 0;
|
||||
avctx->coded_frame->key_frame = 1;
|
||||
avctx->coded_frame->pict_type = FF_I_TYPE;
|
||||
avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
|
||||
|
||||
y = pic->data[0];
|
||||
u = pic->data[1];
|
||||
|
Loading…
Reference in New Issue
Block a user