summaryrefslogtreecommitdiff
path: root/libavformat/wav.c
diff options
context:
space:
mode:
authorDaniel Verkamp <daniel@drv.nu>2009-10-06 17:51:28 +0000
committerDaniel Verkamp <daniel@drv.nu>2009-10-06 17:51:28 +0000
commit70d8c762d9e3045026f1cc7dd95136d894aeced5 (patch)
tree4905d58739a3e870c7a33a71ab767367183f14c5 /libavformat/wav.c
parent811e0fc2e8bb423d8778c95d33dda9e21350063c (diff)
Reindent
Originally committed as revision 20182 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r--libavformat/wav.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c
index 80915d56e6..f4b2d615c2 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -163,17 +163,17 @@ static int wav_probe(AVProbeData *p)
return 0;
if (!memcmp(p->buf + 8, "WAVE", 4)) {
if (!memcmp(p->buf, "RIFF", 4))
- /*
- Since ACT demuxer has standard WAV header at top of it's own,
- returning score is decreased to avoid probe conflict
- between ACT and WAV.
- */
- return AVPROBE_SCORE_MAX - 1;
+ /*
+ Since ACT demuxer has standard WAV header at top of it's own,
+ returning score is decreased to avoid probe conflict
+ between ACT and WAV.
+ */
+ return AVPROBE_SCORE_MAX - 1;
else if (!memcmp(p->buf, "RF64", 4) &&
!memcmp(p->buf + 12, "ds64", 4))
return AVPROBE_SCORE_MAX;
}
- return 0;
+ return 0;
}
/* wav input */