summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmad/libmadplugin.cpp17
1 files changed, 7 insertions, 10 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp
index 0f952f4..8b692ef 100644
--- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp
+++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp
@@ -312,3 +312,3 @@ int LibMadPlugin::http_open(const QString& path ) {
char filename[PATH_MAX];
- char c;
+ //char c;
char *arg =strdup(path.latin1());
@@ -374,3 +374,2 @@ int LibMadPlugin::http_open(const QString& path ) {
QString message = tr("Info: ");
-
do {
@@ -382,3 +381,3 @@ int LibMadPlugin::http_open(const QString& path ) {
if (len == -1) {
- fprintf(stderr, "http_open: %s\n", strerror(errno));
+ qDebug( "http_open: "+ QString(strerror(errno)) +"\n");
return 0;
@@ -386,8 +385,6 @@ int LibMadPlugin::http_open(const QString& path ) {
- if (strncmp(http_request, "Location:", 9) == 0) {
+ if (QString(http_request).left(9) == "Location:") {
/* redirect */
std::close(tcp_sock);
-
http_request[strlen(http_request) - 1] = '\0';
-
return http_open(&http_request[10]);
@@ -395,9 +392,9 @@ int LibMadPlugin::http_open(const QString& path ) {
- if (strncmp(http_request, "ICY ", 4) == 0) {
- /* This is icecast streaming */
+ if (QString(http_request).left(4) == "ICY ") {
+ /* This is shoutcast/icecast streaming */
if (strncmp(http_request + 4, "200 ", 4)) {
- fprintf(stderr, "http_open: %s\n", http_request);
+ qDebug("http_open: " + QString(http_request) + "\n");
return 0;
}
- } else if (strncmp(http_request, "icy-", 4) == 0) {
+ } else if (QString(http_request).left(4) == "icy-") {
/* we can have: icy-noticeX, icy-name, icy-genre, icy-url, icy-pub, icy-metaint, icy-br */