reindent after last commit and remove unneeded empty line
authorKostya Shishkov <kostya.shishkov@gmail.com>
Wed, 16 Sep 2009 18:06:29 +0000 (18:06 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Wed, 16 Sep 2009 18:06:29 +0000 (18:06 +0000)
Originally committed as revision 19885 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/mpc8.c

index 472d17cc5d61ff58575ed425917300c0f9d1f9c1..51817f143944c1c073d624a91d4d931145625b2d 100644 (file)
@@ -90,12 +90,11 @@ static int mpc8_probe(AVProbeData *p)
         if (bs + size - 2 >= bs_end)
             return AVPROBE_SCORE_MAX / 4 - 1; //seems to be valid MPC but no header yet
         if (header_found) {
-
-        if (size < 11 || size > 28)
-            return 0;
-        if (!AV_RL32(bs)) //zero CRC is invalid
-            return 0;
-        return AVPROBE_SCORE_MAX;
+            if (size < 11 || size > 28)
+                return 0;
+            if (!AV_RL32(bs)) //zero CRC is invalid
+                return 0;
+            return AVPROBE_SCORE_MAX;
         } else {
             bs += size - 2;
         }