OSDN Git Service

Fix indenting.
authorRonald S. Bultje <rsbultje@gmail.com>
Thu, 11 Dec 2008 18:48:08 +0000 (18:48 +0000)
committerRonald S. Bultje <rsbultje@gmail.com>
Thu, 11 Dec 2008 18:48:08 +0000 (18:48 +0000)
Originally committed as revision 16056 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rmdec.c

index d9c508f..ea4cf80 100644 (file)
@@ -67,9 +67,9 @@ static int rm_read_audio_stream_info(AVFormatContext *s, ByteIOContext *pb,
         get_str8(pb, s->copyright, sizeof(s->copyright));
         get_str8(pb, s->comment, sizeof(s->comment));
         if ((startpos + (version & 0xffff)) >= url_ftell(pb) + 2) {
-        // fourcc (should always be "lpcJ")
-        get_byte(pb);
-        get_str8(pb, buf, sizeof(buf));
+            // fourcc (should always be "lpcJ")
+            get_byte(pb);
+            get_str8(pb, buf, sizeof(buf));
         }
         // Skip extra header crap (this should never happen)
         if ((startpos + (version & 0xffff)) > url_ftell(pb))