changeset 5843:ad72b1e8934a libavcodec

indentation after last commit
author kostya
date Sun, 21 Oct 2007 17:23:07 +0000
parents 6eade0a54b19
children 2b61d13e9d7a
files rv10.c
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/rv10.c	Sun Oct 21 17:22:37 2007 +0000
+++ b/rv10.c	Sun Oct 21 17:23:07 2007 +0000
@@ -743,17 +743,17 @@
     }else
         slice_count = avctx->slice_count;
 
-        for(i=0; i<slice_count; i++){
-            int offset= get_slice_offset(avctx, slices_hdr, i);
-            int size;
+    for(i=0; i<slice_count; i++){
+        int offset= get_slice_offset(avctx, slices_hdr, i);
+        int size;
 
-            if(i+1 == slice_count)
-                size= buf_size - offset;
-            else
-                size= get_slice_offset(avctx, slices_hdr, i+1) - offset;
+        if(i+1 == slice_count)
+            size= buf_size - offset;
+        else
+            size= get_slice_offset(avctx, slices_hdr, i+1) - offset;
 
-            rv10_decode_packet(avctx, buf+offset, size);
-        }
+        rv10_decode_packet(avctx, buf+offset, size);
+    }
 
     if(s->current_picture_ptr != NULL && s->mb_y>=s->mb_height){
         ff_er_frame_end(s);