# HG changeset patch # User kostya # Date 1253124389 0 # Node ID 2b52ec1e8619e41fe08ea9818541be046440db83 # Parent af13c900ff269d8961e93fd37a47975fec5a62ad reindent after last commit and remove unneeded empty line diff -r af13c900ff26 -r 2b52ec1e8619 mpc8.c --- 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; }