summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-26 03:44:05 +0200
committerMartin Storsjö <martin@martin.st>2013-05-28 13:56:29 +0300
commit728214992e3698305550c1762f973d2ac567f016 (patch)
tree410e351e271f8159233ef2bced10da4732fd0c55 /libavcodec/vc1.c
parentd8b9dbe7768c958dc40d65450f6cc5740f1b46a7 (diff)
vc1dec: Remove interlaced warning
Also add a note about the feature in the changelog. Signed-off-by: Martin Storsjö <martin@martin.st>
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 7d09234f9b..d6586bfaeb 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -854,9 +854,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;