diff options
Diffstat (limited to '')
-rw-r--r-- | src/decoder/ogg_codec.h (renamed from src/decoder/ogg_common.h) | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/decoder/ogg_common.h b/src/decoder/ogg_codec.h index b3c8de238..ac2cdc0ed 100644 --- a/src/decoder/ogg_common.h +++ b/src/decoder/ogg_codec.h @@ -21,17 +21,17 @@ * Common functions used for Ogg data streams (Ogg-Vorbis and OggFLAC) */ -#ifndef MPD_OGG_COMMON_H -#define MPD_OGG_COMMON_H +#ifndef MPD_OGG_CODEC_H +#define MPD_OGG_CODEC_H #include "decoder_api.h" -enum ogg_stream_type { - VORBIS, - FLAC, +enum ogg_codec { + OGG_CODEC_VORBIS, + OGG_CODEC_FLAC, }; -enum ogg_stream_type -ogg_stream_type_detect(struct decoder *decoder, struct input_stream *is); +enum ogg_codec +ogg_codec_detect(struct decoder *decoder, struct input_stream *is); #endif /* _OGG_COMMON_H */ |