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
This commit is contained in:
@@ -51,13 +51,7 @@ int isRemoteUrl(char * url) {
|
||||
|
||||
while(*urlPrefixes) {
|
||||
if(strncmp(*urlPrefixes,url,strlen(*urlPrefixes)) == 0) {
|
||||
#ifdef HAVE_MAD
|
||||
if(hasMp3Suffix(url)) return 1;
|
||||
#endif
|
||||
#ifdef HAVE_OGG
|
||||
if(hasOggSuffix(url)) return 1;
|
||||
#endif
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
urlPrefixes++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user