Commit 5071ad9f authored by aurel's avatar aurel

add a warning message for unsupported kind of encoding

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10277 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e521e3f4
......@@ -126,7 +126,9 @@ static int vp6_parse_header(vp56_context_t *s, uint8_t *buf, int buf_size,
s->filter_selection = 16;
}
vp56_rac_get(c);
if (vp56_rac_get(c))
av_log(s->avctx, AV_LOG_WARNING,
"alternative entropy decoding not supported\n");
if (coeff_offset) {
vp56_init_range_decoder(&s->cc, buf+coeff_offset,
......
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