summaryrefslogtreecommitdiff
path: root/libavcodec/v410enc.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-01-12 09:29:43 +0100
committerAnton Khirnov <anton@khirnov.net>2012-01-12 18:18:23 +0100
commitf3d02a8b280e189bb59db0f194d224bffd4db573 (patch)
tree1b5b8e4029e2b0a44ed8aaf4aa36833c8f3565fc /libavcodec/v410enc.c
parenta29c25a9b27456367c7550364d5ba5d7e3798323 (diff)
lavc: replace some remaining FF_I_TYPE with AV_PICTURE_TYPE_I
Diffstat (limited to 'libavcodec/v410enc.c')
-rw-r--r--libavcodec/v410enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v410enc.c b/libavcodec/v410enc.c
index 11c6abc88e..a6b3ddbf30 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];