OSDN Git Service

oggdec: reindent after 8f3eebd6
authorClément Bœsch <ubitux@gmail.com>
Sun, 24 Apr 2011 13:40:57 +0000 (15:40 +0200)
committerDiego Biurrun <diego@biurrun.de>
Sun, 24 Apr 2011 14:45:45 +0000 (16:45 +0200)
Signed-off-by: Diego Biurrun <diego@biurrun.de>
libavformat/oggdec.c

index d272579..8d96320 100644 (file)
@@ -242,14 +242,14 @@ ogg_read_page (AVFormatContext * s, int *str)
     idx = ogg_find_stream (ogg, serial);
     if (idx < 0){
         if (ogg->headers) {
-                int n;
+            int n;
 
-                for (n = 0; n < ogg->nstreams; n++) {
-                    av_freep(&ogg->streams[n].buf);
-                    av_freep(&ogg->streams[n].private);
-                }
-                ogg->curidx   = -1;
-                ogg->nstreams = 0;
+            for (n = 0; n < ogg->nstreams; n++) {
+                av_freep(&ogg->streams[n].buf);
+                av_freep(&ogg->streams[n].private);
+            }
+            ogg->curidx   = -1;
+            ogg->nstreams = 0;
         }
         idx = ogg_new_stream (s, serial);
         if (idx < 0)