cosmetics: indentation
authorJustin Ruggles <justin.ruggles@gmail.com>
Sat, 28 Feb 2009 17:31:25 +0000 (17:31 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Sat, 28 Feb 2009 17:31:25 +0000 (17:31 +0000)
Originally committed as revision 17662 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/flacdec.c

index 94d916a7289bf3f3bff567456954e4f512ceb6b9..83758b2be09e9b34b218a008a6a2724fb072b157 100644 (file)
@@ -36,14 +36,14 @@ static int flac_read_header(AVFormatContext *s,
     st->need_parsing = AVSTREAM_PARSE_FULL;
     /* the parameters will be extracted from the compressed bitstream */
 
-        /* skip ID3v2 header if found */
-        ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE);
-        if (ret == ID3v2_HEADER_SIZE && ff_id3v2_match(buf)) {
-            int len = ff_id3v2_tag_len(buf);
-            url_fseek(s->pb, len - ID3v2_HEADER_SIZE, SEEK_CUR);
-        } else {
-            url_fseek(s->pb, 0, SEEK_SET);
-        }
+    /* skip ID3v2 header if found */
+    ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE);
+    if (ret == ID3v2_HEADER_SIZE && ff_id3v2_match(buf)) {
+        int len = ff_id3v2_tag_len(buf);
+        url_fseek(s->pb, len - ID3v2_HEADER_SIZE, SEEK_CUR);
+    } else {
+        url_fseek(s->pb, 0, SEEK_SET);
+    }
     return 0;
 }