[SCM] libav/experimental: Reindent

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:52:38 UTC 2013


The following commit has been merged in the experimental branch:
commit 70d8c762d9e3045026f1cc7dd95136d894aeced5
Author: Daniel Verkamp <daniel at drv.nu>
Date:   Tue Oct 6 17:51:28 2009 +0000

    Reindent
    
    Originally committed as revision 20182 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/wav.c b/libavformat/wav.c
index 80915d5..f4b2d61 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -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 */

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list