Browse Source

indent

Originally committed as revision 7844 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer 18 years ago
parent
commit
716ae7caf8
1 changed files with 7 additions and 7 deletions
  1. 7 7
      tests/seek_test.c

+ 7 - 7
tests/seek_test.c

@@ -66,13 +66,13 @@ int main(int argc, char **argv)
 
         memset(&pkt, 0, sizeof(pkt));
         if(ret>=0){
-        ret= av_read_frame(ic, &pkt);
-        printf("ret:%2d", ret);
-        if(ret>=0){
-            st= ic->streams[pkt.stream_index];
-            printf(" st:%2d dts:%f pts:%f pos:%Ld size:%d flags:%d", pkt.stream_index, pkt.dts*av_q2d(st->time_base), pkt.pts*av_q2d(st->time_base), pkt.pos, pkt.size, pkt.flags);
-        }
-        printf("\n");
+            ret= av_read_frame(ic, &pkt);
+            printf("ret:%2d", ret);
+            if(ret>=0){
+                st= ic->streams[pkt.stream_index];
+                printf(" st:%2d dts:%f pts:%f pos:%Ld size:%d flags:%d", pkt.stream_index, pkt.dts*av_q2d(st->time_base), pkt.pts*av_q2d(st->time_base), pkt.pos, pkt.size, pkt.flags);
+            }
+            printf("\n");
         }
 
         if(i>25) break;