[FFmpeg-cvslog] r9805 - trunk/libavcodec/h263.c
michael
subversion
Thu Jul 26 17:47:43 CEST 2007
Author: michael
Date: Thu Jul 26 17:47:43 2007
New Revision: 9805
Log:
remove "Advanced Prediction Mode not supported" spam
Modified:
trunk/libavcodec/h263.c
Modified: trunk/libavcodec/h263.c
==============================================================================
--- trunk/libavcodec/h263.c (original)
+++ trunk/libavcodec/h263.c Thu Jul 26 17:47:43 2007
@@ -6124,11 +6124,7 @@ int intel_h263_decode_picture_header(Mpe
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 */
More information about the ffmpeg-cvslog
mailing list