From 05f4c0506198548c2e93e2029763008383ab48ca Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 26 Apr 2013 03:44:05 +0200 Subject: [PATCH] vc1dec: remove interlaced warning While not yet bugfree, the warning is IMHO no longer appropriate Signed-off-by: Michael Niedermayer --- libavcodec/vc1.c | 3 --- libavcodec/vc1.h | 2 -- 2 files changed, 5 deletions(-) diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 208fef33a5..bd56425b15 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -866,9 +866,6 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb) if (fcm) { if (fcm == ILACE_FIELD) field_mode = 1; - if (!v->warn_interlaced++) - av_log(v->s.avctx, AV_LOG_ERROR, - "Interlaced frames/fields support is incomplete\n"); } } else { fcm = PROGRESSIVE; diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index 76982267f3..c77ab7ce09 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -399,8 +399,6 @@ typedef struct VC1Context{ int end_mb_x; ///< Horizontal macroblock limit (used only by mss2) int parse_only; ///< Context is used within parser - - int warn_interlaced; } VC1Context; /** Find VC-1 marker in buffer