diff error_resilience.c @ 1175:d2fd27d01df8 libavcodec

fixing slice decoding, dunno why the regression tests didnt catch that ...
author michaelni
date Thu, 10 Apr 2003 01:39:53 +0000
parents 21c85c4ab2f0
children fea03d2c4946
line wrap: on
line diff
--- a/error_resilience.c	Mon Apr 07 19:23:21 2003 +0000
+++ b/error_resilience.c	Thu Apr 10 01:39:53 2003 +0000
@@ -614,13 +614,13 @@
             s->error_status_table[i] &= mask;
         }
     }
-
-    s->error_status_table[start_xy] |= VP_START;
-    
+   
     if(end_xy < s->mb_num){
         s->error_status_table[end_xy] &= mask;
         s->error_status_table[end_xy] |= status;
     }
+ 
+    s->error_status_table[start_xy] |= VP_START;
 }
 
 void ff_er_frame_end(MpegEncContext *s){