changeset 432:1716423d29fe trunk

[svn] - remove blanket http:// grabbing -- probing for mp3 now works by VFS (even with shoutcast)
author nenolod
date Mon, 15 Jan 2007 08:33:07 -0800
parents f757e1aa62e6
children 38fe08dff5cd
files ChangeLog src/mpg123/mpg123.c
diffstat 2 files changed, 8 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Jan 15 02:48:34 2007 -0800
+++ b/ChangeLog	Mon Jan 15 08:33:07 2007 -0800
@@ -1,3 +1,10 @@
+2007-01-15 10:48:34 +0000  Kiyoshi Aman <kiyoshi.aman@gmail.com>
+  revision [946]
+  pause functionality should play if not already playing, now
+  trunk/src/evdev-plug/ed.c |    5 ++++-
+  1 file changed, 4 insertions(+), 1 deletion(-)
+
+
 2007-01-15 07:53:59 +0000  Daniel Barkalow <barkalow@iabervon.org>
   revision [944]
   Support shoutcast (over TCP) with VFS HTTP code. mpg123 has to accept
--- a/src/mpg123/mpg123.c	Mon Jan 15 02:48:34 2007 -0800
+++ b/src/mpg123/mpg123.c	Mon Jan 15 08:33:07 2007 -0800
@@ -346,11 +346,7 @@
     gchar *ext = strrchr(filename, '.');
     gboolean ret = FALSE;
 
-    if (CHECK_STREAM_URI(filename) &&
-        (ext && strncasecmp(ext, ".ogg", 4)) &&
-        (ext && strncasecmp(ext, ".flac", 5)))
-	ret = TRUE;
-    else if (mpgdec_detect_by_content(file))
+    if (mpgdec_detect_by_content(file))
         ret = TRUE;
 
     return ret;