diff h263dec.c @ 1098:b7f267d168b7 libavcodec

mpeg2 field pictures + sliced mode (doesnt work with mplayer though, dunno why)
author michaelni
date Wed, 05 Mar 2003 20:03:15 +0000
parents bb27c685fc72
children 1e39f273ecd6
line wrap: on
line diff
--- a/h263dec.c	Wed Mar 05 17:53:33 2003 +0000
+++ b/h263dec.c	Wed Mar 05 20:03:15 2003 +0000
@@ -213,7 +213,7 @@
                         
                     if(++s->mb_x >= s->mb_width){
                         s->mb_x=0;
-                        ff_draw_horiz_band(s);
+                        ff_draw_horiz_band(s, s->mb_y*16, 16);
                         s->mb_y++;
                     }
                     return 0; 
@@ -230,7 +230,7 @@
             }
         }
         
-        ff_draw_horiz_band(s);
+        ff_draw_horiz_band(s, s->mb_y*16, 16);
         
         s->mb_x= 0;
     }