diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-09-16 18:06:29 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-09-16 18:06:29 +0000 |
commit | ebd3e99de9d699dd5a79bbe182c10d24f01c90e8 (patch) | |
tree | ce2a0d10c73ccae940a3c8a10f164b490f043925 /libavformat/mpc8.c | |
parent | f53c9089f6e17aeaba211dce29b16deff835e629 (diff) | |
download | ffmpeg-ebd3e99de9d699dd5a79bbe182c10d24f01c90e8.tar.gz |
reindent after last commit and remove unneeded empty line
Originally committed as revision 19885 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpc8.c')
-rw-r--r-- | libavformat/mpc8.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libavformat/mpc8.c b/libavformat/mpc8.c index 472d17cc5d..51817f1439 100644 --- a/libavformat/mpc8.c +++ b/libavformat/mpc8.c @@ -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; } |