changeset 5268:6156f7337ce8 libavformat

Reindent
author daniel
date Tue, 06 Oct 2009 17:51:28 +0000
parents 8e4a6428f7d7
children bcd5ff60e3da
files wav.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/wav.c	Tue Oct 06 17:50:10 2009 +0000
+++ b/wav.c	Tue Oct 06 17:51:28 2009 +0000
@@ -163,17 +163,17 @@
         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 */