[FFmpeg-cvslog] r15369 - trunk/libavcodec/h264.c

michael subversion
Fri Sep 19 20:49:17 CEST 2008


Author: michael
Date: Fri Sep 19 20:49:17 2008
New Revision: 15369

Log:
Remove check and error message for "MBAFF + !direct_8x8_inference is not implemented"
because this mode does not exist, H.264-2007 says "When frame_mbs_only_flag is
equal to 0, direct_8x8_inference_flag shall be equal to 1."


Modified:
   trunk/libavcodec/h264.c

Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c	(original)
+++ trunk/libavcodec/h264.c	Fri Sep 19 20:49:17 2008
@@ -7078,9 +7078,6 @@ static inline int decode_seq_parameter_s
     if(sps->mb_aff)
         av_log(h->s.avctx, AV_LOG_ERROR, "MBAFF support not included; enable it at compile-time.\n");
 #endif
-    if(!sps->direct_8x8_inference_flag && sps->mb_aff)
-        av_log(h->s.avctx, AV_LOG_ERROR, "MBAFF + !direct_8x8_inference is not implemented\n");
-
     sps->crop= get_bits1(&s->gb);
     if(sps->crop){
         sps->crop_left  = get_ue_golomb(&s->gb);




More information about the ffmpeg-cvslog mailing list