diff options
Diffstat (limited to '')
-rw-r--r-- | src/inputPlugins/oggvorbis_plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inputPlugins/oggvorbis_plugin.c b/src/inputPlugins/oggvorbis_plugin.c index a01556cb3..0e1d523b9 100644 --- a/src/inputPlugins/oggvorbis_plugin.c +++ b/src/inputPlugins/oggvorbis_plugin.c @@ -365,14 +365,14 @@ static struct tag *oggvorbis_TagDup(char *file) return ret; } -static unsigned int oggvorbis_try_decode(InputStream * inStream) +static bool oggvorbis_try_decode(InputStream * inStream) { if (!inStream->seekable) /* we cannot seek after the detection, so don't bother checking */ - return 1; + return true; - return (ogg_stream_type_detect(inStream) == VORBIS) ? 1 : 0; + return ogg_stream_type_detect(inStream) == VORBIS; } static const char *oggvorbis_Suffixes[] = { "ogg","oga", NULL }; |