# HG changeset patch # User nenolod # Date 1135852169 28800 # Node ID e2775c9b8b1364f483dcd2ca6491ab9dc213a887 # Parent 18f8812166794dca0d038591dfa687aff003feb1 [svn] very rudementary http stream detection support for mpg123-clone. - i had to do a lot of stupid hackish workarounds for shoutcast (BTW, I hate you AOL and I hope you die someday.) diff -r 18f881216679 -r e2775c9b8b13 Plugins/Input/mpg123/common.h --- a/Plugins/Input/mpg123/common.h Wed Dec 28 13:40:46 2005 -0800 +++ b/Plugins/Input/mpg123/common.h Thu Dec 29 02:29:29 2005 -0800 @@ -15,4 +15,6 @@ }; */ +extern void parse_url(const gchar * url, gchar ** user, gchar ** pass, + gchar ** host, gint * port, gchar ** filename); diff -r 18f881216679 -r e2775c9b8b13 Plugins/Input/mpg123/http.c --- a/Plugins/Input/mpg123/http.c Wed Dec 28 13:40:46 2005 -0800 +++ b/Plugins/Input/mpg123/http.c Thu Dec 29 02:29:29 2005 -0800 @@ -126,7 +126,7 @@ return res; } -static void +void parse_url(const gchar * url, gchar ** user, gchar ** pass, gchar ** host, gint * port, gchar ** filename) { diff -r 18f881216679 -r e2775c9b8b13 Plugins/Input/mpg123/mpg123.c --- a/Plugins/Input/mpg123/mpg123.c Wed Dec 28 13:40:46 2005 -0800 +++ b/Plugins/Input/mpg123/mpg123.c Thu Dec 29 02:29:29 2005 -0800 @@ -1,10 +1,22 @@ #include "mpg123.h" +#include "common.h" #include #include #include #include #include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include @@ -15,6 +27,8 @@ static const long outscale = 32768; +#define BUFSIZE_X 2048 + static struct frame fr, temp_fr; PlayerInfo *mpg123_info = NULL; @@ -371,6 +385,81 @@ return ret; } +static gboolean +mpg123_detect_by_content_stream(gchar *url) +{ + gchar *buf, inbuf[BUFSIZE_X]; + struct hostent *hp; + struct sockaddr_in sa; + gint s, i, y = 0; + gchar *user, *pass, *host, *filename; + gint port; + + g_strstrip(url); + + parse_url(url, &user, &pass, &host, &port, &filename); + + if (!(s = socket(AF_INET, SOCK_STREAM, 0))) + { + perror("socket"); + return FALSE; + } + + if ((hp = gethostbyname(host)) == NULL) + { + g_print("[stream detect] Unable to resolve %s\n", host); + close(s); + return FALSE; + } + + memset(&sa, '\0', sizeof(sa)); + sa.sin_family = AF_INET; + sa.sin_port = htons(port); + memcpy(&sa.sin_addr, hp->h_addr, hp->h_length); + + if (connect(s, (struct sockaddr *)&sa, sizeof(sa)) < 0) + { + perror("connect"); + return FALSE; + } + + g_print("[stream detect] connected to %s, port %d\n", host, port); + + buf = g_strdup_printf("GET /%s HTTP/1.0\r\nUser-Agent: " PACKAGE "/" PACKAGE_VERSION "\r\n\r\n", filename ? filename : ""); + i = write(s, buf, strlen(buf)); + g_free(buf); + + if (i == -1) + { + perror("write"); + return FALSE; + } + + /* don't ask. --nenolod */ + while ((i = read(s, inbuf + y, BUFSIZE_X - y)) != 0 && y < BUFSIZE_X) + { + inbuf[y + i] = '\0'; + y += i; + } + + close(s); + + buf = strtok(inbuf, "\n"); + while ((buf = strtok(NULL, "\n")) != NULL) + { + if (!g_strncasecmp("content-type:audio/mpeg", buf, 23) || + !g_strncasecmp("icy-br:", buf, 7) || /* XXX ShoutCAST sometimes doesnt send the content-type header */ + !g_strncasecmp("Content-Type: audio/mpeg", buf, 24)) + { + g_print("[stream detect] server is providing audio/mpeg stream\n"); + return TRUE; + } + } + + g_print("[stream detect] server is NOT providing audio/mpeg stream\n"); + return FALSE; +} + static int is_our_file(char *filename) { @@ -381,6 +470,7 @@ /* We assume all http:// (except those ending in .ogg) are mpeg -- * why do we do that? */ if (!strncasecmp(filename, "http://", 7)) { +#ifdef NOTYET ext = strrchr(filename, '.'); if (ext) { if (!strncasecmp(ext, ".ogg", 4)) @@ -392,6 +482,9 @@ return FALSE; } return TRUE; +#else + return mpg123_detect_by_content_stream(filename); +#endif } if (mpg123_cfg.detect_by == DETECT_CONTENT) return (mpg123_detect_by_content(filename));