ogg_common: fix indent screwup
git-svn-id: https://svn.musicpd.org/mpd/trunk@7109 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
0d1a3539ad
commit
a4ed0a8358
|
@ -54,20 +54,11 @@ ogg_stream_type ogg_stream_type_detect(InputStream * inStream)
|
|||
|
||||
seekInputStream(inStream, 0, SEEK_SET);
|
||||
|
||||
if (r >= 32 && memcmp(buf, "OggS", 4) == 0 && ((memcmp
|
||||
(buf + 29, "FLAC",
|
||||
4) == 0
|
||||
&& memcmp(buf + 37,
|
||||
"fLaC",
|
||||
4) == 0)
|
||||
||
|
||||
(memcmp
|
||||
(buf + 28, "FLAC",
|
||||
4) == 0)
|
||||
||
|
||||
(memcmp
|
||||
(buf + 28, "fLaC",
|
||||
4) == 0))) {
|
||||
if (r >= 32 && memcmp(buf, "OggS", 4) == 0 && (
|
||||
(memcmp(buf+29, "FLAC", 4) == 0
|
||||
&& memcmp(buf+37, "fLaC", 4) == 0)
|
||||
|| (memcmp(buf+28, "FLAC", 4) == 0)
|
||||
|| (memcmp(buf+28, "fLaC", 4) == 0))) {
|
||||
return FLAC;
|
||||
}
|
||||
return VORBIS;
|
||||
|
|
Loading…
Reference in New Issue