summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2007-11-10 08:23:01 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2007-11-10 08:23:01 +0000
commit63d2bad846e279dbf2cc3261f6e24c405c68b17a (patch)
tree44474d00ff68c48b8fa2e8935d3f0fb883f8c462
parentce5d17f590719504e6318b757dc74ee0b2da4ce4 (diff)
X8 is supported now, so warning is incorrect
Originally committed as revision 10990 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/vc1.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index dde743b9d2..ed0b03000a 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -809,12 +809,6 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
}
v->res_x8 = get_bits1(gb); //reserved
- if (v->res_x8)
- {
- av_log(avctx, AV_LOG_ERROR,
- "1 for reserved RES_X8 is forbidden\n");
- //return -1;
- }
v->multires = get_bits1(gb);
v->res_fasttx = get_bits1(gb);
if (!v->res_fasttx)