summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2003-06-12 03:17:27 (UTC)
committer llornkcor <llornkcor>2003-06-12 03:17:27 (UTC)
commit0d4598bd57f7bcb89e894d11a2f33607d2d1e57c (patch) (side-by-side diff)
treecdac9dc890b945e10f261aa483137b5435bad655
parentd5fb55632847e18026506af6b482c2cd3def3222 (diff)
downloadopie-0d4598bd57f7bcb89e894d11a2f33607d2d1e57c.zip
opie-0d4598bd57f7bcb89e894d11a2f33607d2d1e57c.tar.gz
opie-0d4598bd57f7bcb89e894d11a2f33607d2d1e57c.tar.bz2
remove qdebug
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmad/libmadplugin.cpp42
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
@@ -383,5 +383,5 @@ 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;
}
@@ -397,5 +397,5 @@ int LibMadPlugin::http_open(const QString& path ) {
/* This is shoutcast/icecast streaming */
if (strncmp(http_request + 4, "200 ", 4)) {
- qDebug("http_open: " + QString(http_request) + "\n");
+ // qDebug("http_open: " + QString(http_request) + "\n");
return 0;
}
@@ -418,5 +418,5 @@ int LibMadPlugin::http_open(const QString& path ) {
info = QString(name + genre + url + bitrate + message).replace( QRegExp("\n"), " : " );
- qDebug("Stream info: " + info);
+ // qDebug("Stream info: " + info);
return (tcp_sock);
@@ -430,5 +430,5 @@ bool LibMadPlugin::open( const QString& path ) {
cfg.setGroup("Options");
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;
d->flush = TRUE;
@@ -451,5 +451,5 @@ 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;
}
@@ -457,5 +457,5 @@ bool LibMadPlugin::open( const QString& path ) {
struct stat stat;
if (fstat(d->input.fd, &stat) == -1) {
- qDebug("error calling fstat"); return FALSE;
+ // qDebug("error calling fstat"); return FALSE;
}
if (S_ISREG(stat.st_mode) && stat.st_size > 0)
@@ -469,5 +469,5 @@ bool LibMadPlugin::open( const QString& path ) {
d->input.fdm = map_file(d->input.fd, &d->input.length);
if (d->input.fdm == 0) {
- qDebug("error mmapping file"); return FALSE;
+ // qDebug("error mmapping file"); return FALSE;
}
d->input.data = (unsigned char *)d->input.fdm;
@@ -478,5 +478,5 @@ bool LibMadPlugin::open( const QString& path ) {
d->input.data = (unsigned char *)malloc( bufferSize /*MPEG_BUFFER_SIZE*/);
if (d->input.data == 0) {
- qDebug("error allocating input buffer");
+ // qDebug("error allocating input buffer");
return FALSE;
}
@@ -506,5 +506,5 @@ bool LibMadPlugin::close() {
if (d->input.fdm) {
if (unmap_file(d->input.fdm, d->input.length) == -1) {
- qDebug("error munmapping file");
+ // qDebug("error munmapping file");
result = FALSE;
}
@@ -520,5 +520,5 @@ 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;
}
@@ -556,5 +556,5 @@ int LibMadPlugin::audioFrequency( int ) {
debugMsg( "LibMadPlugin::audioFrequency" );
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;
}
@@ -575,7 +575,7 @@ int LibMadPlugin::audioSamples( int ) {
int samples = (d->input.fileLength / (d->frame.header.bitrate/8)) * d->frame.header.samplerate;
- 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 );
return samples;
@@ -681,5 +681,5 @@ bool LibMadPlugin::read() {
if (len == -1) {
- qDebug("error reading audio");
+ // qDebug("error reading audio");
return FALSE;
}
@@ -759,5 +759,5 @@ bool LibMadPlugin::decode( short *output, long samples, long& samplesMade ) {
if ( d->stream.error == MAD_ERROR_BADCRC ) {
mad_frame_mute(&d->frame);
- qDebug( "error decoding, bad crc" );
+ // qDebug( "error decoding, bad crc" );
}
}
@@ -822,15 +822,15 @@ double LibMadPlugin::getTime() {
void LibMadPlugin::printID3Tags() {
- qDebug( "LibMadPlugin::printID3Tags" );
+ // qDebug( "LibMadPlugin::printID3Tags" );
char id3v1[128 + 1];
if ( ::lseek( d->input.fd, -128, SEEK_END ) == -1 ) {
- qDebug( "error seeking to id3 tags" );
+ // qDebug( "error seeking to id3 tags" );
return;
}
if ( ::read( d->input.fd, id3v1, 128 ) != 128 ) {
- qDebug( "error reading in id3 tags" );
+ // qDebug( "error reading in id3 tags" );
return;
}
@@ -842,5 +842,5 @@ void LibMadPlugin::printID3Tags() {
QString label[5] = { tr( "Title" ), tr( "Artist" ), tr( "Album" ), tr( "Year" ), tr( "Comment" ) };
char *ptr = id3v1 + 3, *ptr2 = ptr + len[0];
- qDebug( "ID3 tags in file:" );
+ // qDebug( "ID3 tags in file:" );
info = "";
for ( int i = 0; i < 5; ptr += len[i], i++, ptr2 += len[i] ) {
@@ -863,5 +863,5 @@ 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;
}