Commit 6f24d06b authored by michael's avatar michael

remove "Advanced Prediction Mode not supported" spam


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9805 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 37877f02
......@@ -6124,11 +6124,7 @@ int intel_h263_decode_picture_header(MpegEncContext *s)
av_log(s->avctx, AV_LOG_ERROR, "SAC not supported\n");
return -1; /* SAC: off */
}
if (get_bits1(&s->gb) != 0) {
s->obmc= 1;
av_log(s->avctx, AV_LOG_ERROR, "Advanced Prediction Mode not supported\n");
// return -1; /* advanced prediction mode: off */
}
s->obmc= get_bits1(&s->gb);
if (get_bits1(&s->gb) != 0) {
av_log(s->avctx, AV_LOG_ERROR, "PB frame mode no supported\n");
return -1; /* PB frame mode */
......
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