From 975a1447f76e8d30fc01e6ea5466c84faf3d76e4 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 29 Apr 2011 18:53:57 +0200 Subject: Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*. Signed-off-by: Diego Biurrun --- libavcodec/pcxenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/pcxenc.c') diff --git a/libavcodec/pcxenc.c b/libavcodec/pcxenc.c index 2f2ae698e3..81629d0add 100644 --- a/libavcodec/pcxenc.c +++ b/libavcodec/pcxenc.c @@ -108,7 +108,7 @@ static int pcx_encode_frame(AVCodecContext *avctx, const uint8_t *src; *pict = *(AVFrame *)data; - pict->pict_type = FF_I_TYPE; + pict->pict_type = AV_PICTURE_TYPE_I; pict->key_frame = 1; if (avctx->width > 65535 || avctx->height > 65535) { -- cgit v1.2.3