diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-12 09:29:43 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-12 18:18:23 +0100 |
commit | f3d02a8b280e189bb59db0f194d224bffd4db573 (patch) | |
tree | 1b5b8e4029e2b0a44ed8aaf4aa36833c8f3565fc /libavcodec/vble.c | |
parent | a29c25a9b27456367c7550364d5ba5d7e3798323 (diff) | |
download | ffmpeg-f3d02a8b280e189bb59db0f194d224bffd4db573.tar.gz |
lavc: replace some remaining FF_I_TYPE with AV_PICTURE_TYPE_I
Diffstat (limited to 'libavcodec/vble.c')
-rw-r--r-- | libavcodec/vble.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vble.c b/libavcodec/vble.c index fa205f5982..574582af7b 100644 --- a/libavcodec/vble.c +++ b/libavcodec/vble.c @@ -135,7 +135,7 @@ static int vble_decode_frame(AVCodecContext *avctx, void *data, int *data_size, /* Set flags */ pic->key_frame = 1; - pic->pict_type = FF_I_TYPE; + pic->pict_type = AV_PICTURE_TYPE_I; /* Version should always be 1 */ version = AV_RL32(src); |