diff options
Diffstat (limited to 'src/decoder/ogg_common.h')
-rw-r--r-- | src/decoder/ogg_common.h | 8 |
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 */ |