summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2011-03-01 11:37:55 -0500
committerRonald S. Bultje <rsbultje@gmail.com>2011-03-21 09:43:21 -0400
commit72452cc475544b6e294676abd3fa5e0518f81841 (patch)
treeed794becd3bba330ad320f55544546b32907922e /libavcodec/vc1.c
parent8d9769a77b49b0d633c835d99ed3c0aa3f3b77a1 (diff)
vc1: warn for unimplemented pan-scan feature.
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r--libavcodec/vc1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index 0f8a42c45a..77e71db778 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -863,6 +863,7 @@ int vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
}
}
if(v->panscanflag) {
+ av_log_missing_feature(v->s.avctx, "Pan-scan", 0);
//...
}
v->rnd = get_bits1(gb);