From 45f8d47384934582f4e2e0ff5321b710ea9c34da Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Tue, 18 May 2004 04:35:26 +0000 Subject: assume all streams are mp3's, we'll need to open the streams before calling the decoder routines to fetch the mime-type! git-svn-id: https://svn.musicpd.org/mpd/trunk@1054 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/player.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/player.c') diff --git a/src/player.c b/src/player.c index a764dd28a..7f28670bf 100644 --- a/src/player.c +++ b/src/player.c @@ -161,7 +161,8 @@ int playerInit() { } int playerGetDecodeType(char * utf8file) { - if(!isRemoteUrl(utf8file) && !isFile(utf8file,NULL)) return -1; + if(isRemoteUrl(utf8file)) return DECODE_TYPE_MP3; + if(!isFile(utf8file,NULL)) return -1; #ifdef HAVE_MAD if(hasMp3Suffix(utf8file)) return DECODE_TYPE_MP3; #endif -- cgit v1.2.3