Commit f5749bd0 authored by cehoyos's avatar cehoyos

Fill range_map* in VC1Context.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16515 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d947339d
......@@ -1086,13 +1086,13 @@ static int decode_entry_point(AVCodecContext *avctx, GetBitContext *gb)
}
if(v->extended_mv)
v->extended_dmv = get_bits1(gb);
if(get_bits1(gb)) {
if((v->range_mapy_flag = get_bits1(gb))) {
av_log(avctx, AV_LOG_ERROR, "Luma scaling is not supported, expect wrong picture\n");
skip_bits(gb, 3); // Y range, ignored for now
v->range_mapy = get_bits(gb, 3);
}
if(get_bits1(gb)) {
if((v->range_mapuv_flag = get_bits1(gb))) {
av_log(avctx, AV_LOG_ERROR, "Chroma scaling is not supported, expect wrong picture\n");
skip_bits(gb, 3); // UV range, ignored for now
v->range_mapuv = get_bits(gb, 3);
}
av_log(avctx, AV_LOG_DEBUG, "Entry point info:\n"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment