[FFmpeg-cvslog] r19885 - trunk/libavformat/mpc8.c
kostya
subversion
Wed Sep 16 20:06:29 CEST 2009
Author: kostya
Date: Wed Sep 16 20:06:29 2009
New Revision: 19885
Log:
reindent after last commit and remove unneeded empty line
Modified:
trunk/libavformat/mpc8.c
Modified: trunk/libavformat/mpc8.c
==============================================================================
--- trunk/libavformat/mpc8.c Wed Sep 16 20:05:21 2009 (r19884)
+++ trunk/libavformat/mpc8.c Wed Sep 16 20:06:29 2009 (r19885)
@@ -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;
}
More information about the ffmpeg-cvslog
mailing list