diff options
Diffstat (limited to 'libavcodec/v210enc.c')
-rw-r--r-- | libavcodec/v210enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v210enc.c b/libavcodec/v210enc.c index 39f672d22b..69499d844b 100644 --- a/libavcodec/v210enc.c +++ b/libavcodec/v210enc.c @@ -43,7 +43,7 @@ static av_cold int encode_init(AVCodecContext *avctx) avctx->coded_frame = avcodec_alloc_frame(); avctx->coded_frame->key_frame = 1; - avctx->coded_frame->pict_type = FF_I_TYPE; + avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I; return 0; } |