diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-01-02 17:49:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-03 03:25:22 +0100 |
commit | 7099f36578252935157be322bc9a34d0c861f83e (patch) | |
tree | e51a69f8c26b9d5b1024cf32b1d345e9ddfcbb7d /libavcodec/v410enc.c | |
parent | 12bdc7b15e4f5a24842b34ba79f59ca869f8f33a (diff) | |
download | ffmpeg-7099f36578252935157be322bc9a34d0c861f83e.tar.gz |
lavc: replace rest of deprecated FF_*_TYPE with AV_PICTURE_TYPE_*
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/v410enc.c')
-rw-r--r-- | libavcodec/v410enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v410enc.c b/libavcodec/v410enc.c index e7d9c4e384..bcd7c65bdc 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]; |