comparison h263.c @ 5405:f15e5b4909e1 libavcodec

remove "Advanced Prediction Mode not supported" spam
author michael
date Thu, 26 Jul 2007 15:47:43 +0000
parents 842d88e745ab
children 5581a40c673a
comparison
equal deleted inserted replaced
5404:842d88e745ab 5405:f15e5b4909e1
6122 6122
6123 if (get_bits1(&s->gb) != 0) { 6123 if (get_bits1(&s->gb) != 0) {
6124 av_log(s->avctx, AV_LOG_ERROR, "SAC not supported\n"); 6124 av_log(s->avctx, AV_LOG_ERROR, "SAC not supported\n");
6125 return -1; /* SAC: off */ 6125 return -1; /* SAC: off */
6126 } 6126 }
6127 if (get_bits1(&s->gb) != 0) { 6127 s->obmc= get_bits1(&s->gb);
6128 s->obmc= 1;
6129 av_log(s->avctx, AV_LOG_ERROR, "Advanced Prediction Mode not supported\n");
6130 // return -1; /* advanced prediction mode: off */
6131 }
6132 if (get_bits1(&s->gb) != 0) { 6128 if (get_bits1(&s->gb) != 0) {
6133 av_log(s->avctx, AV_LOG_ERROR, "PB frame mode no supported\n"); 6129 av_log(s->avctx, AV_LOG_ERROR, "PB frame mode no supported\n");
6134 return -1; /* PB frame mode */ 6130 return -1; /* PB frame mode */
6135 } 6131 }
6136 6132