From 18e458154a25d41b2b18862d18f417e6e8e74d6b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 4 Sep 2012 11:52:18 +0200 Subject: decoder/ogg_common: apply coding style --- src/decoder/ogg_common.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/decoder/ogg_common.c') diff --git a/src/decoder/ogg_common.c b/src/decoder/ogg_common.c index d57e247fa..ba1a8edea 100644 --- a/src/decoder/ogg_common.c +++ b/src/decoder/ogg_common.c @@ -24,15 +24,14 @@ #include "config.h" #include "ogg_common.h" -ogg_stream_type ogg_stream_type_detect(struct input_stream *inStream) +enum ogg_stream_type +ogg_stream_type_detect(struct input_stream *is) { /* oggflac detection based on code in ogg123 and this post * http://lists.xiph.org/pipermail/flac/2004-December/000393.html * ogg123 trunk still doesn't have this patch as of June 2005 */ unsigned char buf[41]; - size_t r; - - r = decoder_read(NULL, inStream, buf, sizeof(buf)); + size_t r = decoder_read(NULL, is, buf, sizeof(buf)); if (r < sizeof(buf) || memcmp(buf, "OggS", 4) != 0) return VORBIS; -- cgit v1.2.3