diff h264_cavlc.c @ 11191:5e583a785508 libavcodec

Move check for and call of predict_field_decoding_flag() from the mb code to the row code. This function would only be needed on a MB basis for MBAFF+FMO
author michael
date Wed, 17 Feb 2010 02:14:02 +0000
parents d1a855cb0a0c
children c4c8c8c426eb
line wrap: on
line diff
--- a/h264_cavlc.c	Tue Feb 16 23:43:08 2010 +0000
+++ b/h264_cavlc.c	Wed Feb 17 02:14:02 2010 +0000
@@ -547,8 +547,6 @@
             if(FRAME_MBAFF && (s->mb_y&1) == 0){
                 if(s->mb_skip_run==0)
                     h->mb_mbaff = h->mb_field_decoding_flag = get_bits1(&s->gb);
-                else
-                    predict_field_decoding_flag(h);
             }
             decode_mb_skip(h);
             return 0;