From f44fc6d458a116b7f932f1c7628d53557f5183d3 Mon Sep 17 00:00:00 2001 From: harlekin Date: Thu, 23 May 2002 20:36:26 +0000 Subject: include #include reagrding PATH_MAX build problem --- diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp index 3df23249..9a1ab2a 100644 --- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp +++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp @@ -43,6 +43,7 @@ // for network handling #include #include +#include #include #include #include @@ -434,19 +435,14 @@ bool LibMadPlugin::open( const QString& path ) { //qDebug( "Opening %s", path.latin1() ); - if (path.left( 4 ) == "http" ) { - qDebug("Test2"); // in case of any error we get 0 here if ( !(http_open(path) == 0) ) { - qDebug("Test3"); d->input.fd = http_open(path); } else { - qDebug("Test5"); return FALSE; } } else { - qDebug("Test4"); d->input.path = path.latin1(); d->input.fd = ::open( d->input.path, O_RDONLY ); // thats a better place, since it should only seek for ID3 tags on mp3 files, not streams @@ -454,11 +450,9 @@ bool LibMadPlugin::open( const QString& path ) { } if (d->input.fd == -1) { qDebug("error opening %s", d->input.path ); - return FALSE; + return FALSE; } -// printID3Tags(); - #if defined(HAVE_MMAP) struct stat stat; if (fstat(d->input.fd, &stat) == -1) { -- cgit v0.9.0.2