-rw-r--r-- | core/multimedia/opieplayer/libmad/libmadplugin.cpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp index 9d1ff8c..1989b4a 100644 --- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp +++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp @@ -384,3 +384,3 @@ int LibMadPlugin::http_open(const QString& path ) { if (len == -1) { - qDebug( "http_open: "+ QString(strerror(errno)) +"\n"); + // qDebug( "http_open: "+ QString(strerror(errno)) +"\n"); return 0; @@ -398,3 +398,3 @@ int LibMadPlugin::http_open(const QString& path ) { if (strncmp(http_request + 4, "200 ", 4)) { - qDebug("http_open: " + QString(http_request) + "\n"); + // qDebug("http_open: " + QString(http_request) + "\n"); return 0; @@ -419,3 +419,3 @@ int LibMadPlugin::http_open(const QString& path ) { - qDebug("Stream info: " + info); + // qDebug("Stream info: " + info); @@ -431,3 +431,3 @@ bool LibMadPlugin::open( const QString& path ) { bufferSize = cfg.readNumEntry("MPeg_BufferSize",MPEG_BUFFER_SIZE); - qDebug("buffer size is %d", bufferSize); + // qDebug("buffer size is %d", bufferSize); d->bad_last_frame = 0; @@ -452,3 +452,3 @@ bool LibMadPlugin::open( const QString& path ) { if (d->input.fd == -1) { - qDebug("error opening %s", d->input.path ); + // qDebug("error opening %s", d->input.path ); return FALSE; @@ -458,3 +458,3 @@ bool LibMadPlugin::open( const QString& path ) { if (fstat(d->input.fd, &stat) == -1) { - qDebug("error calling fstat"); return FALSE; + // qDebug("error calling fstat"); return FALSE; } @@ -470,3 +470,3 @@ bool LibMadPlugin::open( const QString& path ) { if (d->input.fdm == 0) { - qDebug("error mmapping file"); return FALSE; + // qDebug("error mmapping file"); return FALSE; } @@ -479,3 +479,3 @@ bool LibMadPlugin::open( const QString& path ) { if (d->input.data == 0) { - qDebug("error allocating input buffer"); + // qDebug("error allocating input buffer"); return FALSE; @@ -507,3 +507,3 @@ bool LibMadPlugin::close() { if (unmap_file(d->input.fdm, d->input.length) == -1) { - qDebug("error munmapping file"); + // qDebug("error munmapping file"); result = FALSE; @@ -521,3 +521,3 @@ bool LibMadPlugin::close() { if (::close(d->input.fd) == -1) { - qDebug("error closing file %s", d->input.path); + // qDebug("error closing file %s", d->input.path); result = FALSE; @@ -557,3 +557,3 @@ int LibMadPlugin::audioFrequency( int ) { long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); - qDebug( "LibMadPlugin::audioFrequency: %i", d->frame.header.samplerate ); + // qDebug( "LibMadPlugin::audioFrequency: %i", d->frame.header.samplerate ); return d->frame.header.samplerate; @@ -576,5 +576,5 @@ int LibMadPlugin::audioSamples( int ) { - qDebug( "LibMadPlugin::audioSamples: %i * %i * 8 / %i", (int)d->input.fileLength, - (int)d->frame.header.samplerate, (int)d->frame.header.bitrate ); - qDebug( "LibMadPlugin::audioSamples: %i", samples ); + // qDebug( "LibMadPlugin::audioSamples: %i * %i * 8 / %i", (int)d->input.fileLength, + // (int)d->frame.header.samplerate, (int)d->frame.header.bitrate ); + // qDebug( "LibMadPlugin::audioSamples: %i", samples ); @@ -682,3 +682,3 @@ bool LibMadPlugin::read() { if (len == -1) { - qDebug("error reading audio"); + // qDebug("error reading audio"); return FALSE; @@ -760,3 +760,3 @@ bool LibMadPlugin::decode( short *output, long samples, long& samplesMade ) { mad_frame_mute(&d->frame); - qDebug( "error decoding, bad crc" ); + // qDebug( "error decoding, bad crc" ); } @@ -823,3 +823,3 @@ double LibMadPlugin::getTime() { void LibMadPlugin::printID3Tags() { - qDebug( "LibMadPlugin::printID3Tags" ); + // qDebug( "LibMadPlugin::printID3Tags" ); @@ -828,3 +828,3 @@ void LibMadPlugin::printID3Tags() { if ( ::lseek( d->input.fd, -128, SEEK_END ) == -1 ) { - qDebug( "error seeking to id3 tags" ); + // qDebug( "error seeking to id3 tags" ); return; @@ -833,3 +833,3 @@ void LibMadPlugin::printID3Tags() { if ( ::read( d->input.fd, id3v1, 128 ) != 128 ) { - qDebug( "error reading in id3 tags" ); + // qDebug( "error reading in id3 tags" ); return; @@ -843,3 +843,3 @@ void LibMadPlugin::printID3Tags() { char *ptr = id3v1 + 3, *ptr2 = ptr + len[0]; - qDebug( "ID3 tags in file:" ); + // qDebug( "ID3 tags in file:" ); info = ""; @@ -864,3 +864,3 @@ void LibMadPlugin::printID3Tags() { if ( ::lseek(d->input.fd, 0, SEEK_SET) == -1 ) { - qDebug( "error seeking back to beginning" ); + // qDebug( "error seeking back to beginning" ); return; |