aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/ogg_common.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-09-04 11:52:18 +0200
committerMax Kellermann <max@duempel.org>2012-09-04 11:52:18 +0200
commit18e458154a25d41b2b18862d18f417e6e8e74d6b (patch)
tree69651a01a0f35baf4dc15cc32bb0bb00c00730b1 /src/decoder/ogg_common.h
parent015e1ab183a248ce07f11775bc622c1018f365e9 (diff)
downloadmpd-18e458154a25d41b2b18862d18f417e6e8e74d6b.tar.gz
mpd-18e458154a25d41b2b18862d18f417e6e8e74d6b.tar.xz
mpd-18e458154a25d41b2b18862d18f417e6e8e74d6b.zip
decoder/ogg_common: apply coding style
Diffstat (limited to '')
-rw-r--r--src/decoder/ogg_common.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/decoder/ogg_common.h b/src/decoder/ogg_common.h
index 85e4ebba6..26414e96e 100644
--- a/src/decoder/ogg_common.h
+++ b/src/decoder/ogg_common.h
@@ -26,8 +26,12 @@
#include "decoder_api.h"
-typedef enum _ogg_stream_type { VORBIS, FLAC } ogg_stream_type;
+enum ogg_stream_type {
+ VORBIS,
+ FLAC,
+};
-ogg_stream_type ogg_stream_type_detect(struct input_stream *inStream);
+enum ogg_stream_type
+ogg_stream_type_detect(struct input_stream *is);
#endif /* _OGG_COMMON_H */