From 7099f36578252935157be322bc9a34d0c861f83e Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 2 Jan 2012 17:49:38 +0000 Subject: lavc: replace rest of deprecated FF_*_TYPE with AV_PICTURE_TYPE_* Signed-off-by: Michael Niedermayer --- libavcodec/v410enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/v410enc.c') diff --git a/libavcodec/v410enc.c b/libavcodec/v410enc.c index e7d9c4e..bcd7c65 100644 --- a/libavcodec/v410enc.c +++ b/libavcodec/v410enc.c @@ -57,7 +57,7 @@ static int v410_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 = (uint16_t *)pic->data[0]; u = (uint16_t *)pic->data[1]; -- cgit v1.1