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/vc1_parser.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/vc1_parser.c') diff --git a/libavcodec/vc1_parser.c b/libavcodec/vc1_parser.c index da8ba87b7c..27ff1bdaa3 100644 --- a/libavcodec/vc1_parser.c +++ b/libavcodec/vc1_parser.c @@ -67,9 +67,9 @@ static void vc1_extract_headers(AVCodecParserContext *s, AVCodecContext *avctx, else vc1_parse_frame_header_adv(&vpc->v, &gb); - /* keep FF_BI_TYPE internal to VC1 */ - if (vpc->v.s.pict_type == FF_BI_TYPE) - s->pict_type = FF_B_TYPE; + /* keep AV_PICTURE_TYPE_BI internal to VC1 */ + if (vpc->v.s.pict_type == AV_PICTURE_TYPE_BI) + s->pict_type = AV_PICTURE_TYPE_B; else s->pict_type = vpc->v.s.pict_type; -- cgit v1.2.3