diff mpc8.c @ 5209:2b52ec1e8619 libavformat

reindent after last commit and remove unneeded empty line
author kostya
date Wed, 16 Sep 2009 18:06:29 +0000
parents af13c900ff26
children da61aef912cb
line wrap: on
line diff
--- a/mpc8.c	Wed Sep 16 18:05:21 2009 +0000
+++ b/mpc8.c	Wed Sep 16 18:06:29 2009 +0000
@@ -90,12 +90,11 @@
         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;
         }