[FFmpeg-cvslog] r20182 - trunk/libavformat/wav.c

daniel subversion
Tue Oct 6 19:51:29 CEST 2009


Author: daniel
Date: Tue Oct  6 19:51:28 2009
New Revision: 20182

Log:
Reindent

Modified:
   trunk/libavformat/wav.c

Modified: trunk/libavformat/wav.c
==============================================================================
--- trunk/libavformat/wav.c	Tue Oct  6 19:50:10 2009	(r20181)
+++ trunk/libavformat/wav.c	Tue Oct  6 19:51:28 2009	(r20182)
@@ -163,17 +163,17 @@ static int wav_probe(AVProbeData *p)
         return 0;
     if (!memcmp(p->buf + 8, "WAVE", 4)) {
         if (!memcmp(p->buf, "RIFF", 4))
-        /*
-          Since ACT demuxer has standard WAV header at top of it's own,
-          returning score is decreased to avoid probe conflict
-          between ACT and WAV.
-        */
-        return AVPROBE_SCORE_MAX - 1;
+            /*
+              Since ACT demuxer has standard WAV header at top of it's own,
+              returning score is decreased to avoid probe conflict
+              between ACT and WAV.
+            */
+            return AVPROBE_SCORE_MAX - 1;
         else if (!memcmp(p->buf,      "RF64", 4) &&
                  !memcmp(p->buf + 12, "ds64", 4))
             return AVPROBE_SCORE_MAX;
     }
-        return 0;
+    return 0;
 }
 
 /* wav input */



More information about the ffmpeg-cvslog mailing list