summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-26 03:44:05 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-26 03:44:05 +0200
commit05f4c0506198548c2e93e2029763008383ab48ca (patch)
tree0ad6c4023eb56b4d0c0ece2f603a433fcb8edd76 /libavcodec/vc1.c
parentcd134963e8fdaae14a25779799e4436f99e50557 (diff)
vc1dec: remove interlaced warning
While not yet bugfree, the warning is IMHO no longer appropriate Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r--libavcodec/vc1.c3
1 files changed, 0 insertions, 3 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;