summaryrefslogtreecommitdiff
path: root/libavcodec/v308enc.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-04 19:45:46 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-04 19:45:46 +0100
commit84ce58faf59d88b497917b3d9e13a5fb2a10fe3e (patch)
tree015dd1467330731c4b0572421866424dac787025 /libavcodec/v308enc.c
parent17edc370b2e0656ed827b20a865347a9c87cbc1a (diff)
Replace deprecated FF_I_TYPE with AV_PICTURE_TYPE_I in v308 and yuv4.
Found-by: Paul B Mahol
Diffstat (limited to 'libavcodec/v308enc.c')
-rw-r--r--libavcodec/v308enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v308enc.c b/libavcodec/v308enc.c
index 4e5488a346..77fe073852 100644
--- a/libavcodec/v308enc.c
+++ b/libavcodec/v308enc.c
@@ -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];