OSDN Git Service

indentation
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Wed, 14 Feb 2007 11:18:34 +0000 (11:18 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Wed, 14 Feb 2007 11:18:34 +0000 (11:18 +0000)
Originally committed as revision 7979 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/aiff.c

index 0d75f3b..da310f0 100644 (file)
@@ -180,10 +180,10 @@ static int aiff_write_header(AVFormatContext *s)
     put_tag(pb, aifc ? "AIFC" : "AIFF");
 
     if (aifc) {
-    /* Version chunk */
-    put_tag(pb, "FVER");
-    put_be32(pb, 4);
-    put_be32(pb, 0xA2805140);
+        /* Version chunk */
+        put_tag(pb, "FVER");
+        put_be32(pb, 4);
+        put_be32(pb, 0xA2805140);
     }
 
     /* Common chunk */
@@ -209,8 +209,8 @@ static int aiff_write_header(AVFormatContext *s)
     put_buffer(pb, (uint8_t*)&sample_rate, sizeof(sample_rate));
 
     if (aifc) {
-    put_le32(pb, enc->codec_tag);
-    put_be16(pb, 0);
+        put_le32(pb, enc->codec_tag);
+        put_be16(pb, 0);
     }
 
     /* Sound data chunk */