-rw-r--r-- | core/multimedia/opieplayer/libmad/libmadplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp index 428fc28..7438a45 100644 --- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp +++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp | |||
@@ -573,18 +573,18 @@ int LibMadPlugin::audioSamples( int ) { | |||
573 | /* | 573 | /* |
574 | odebug << "LibMadPlugin::audioSamples: " << d->frame.header.duration.seconds << "*" << d->frame.header.samplerate << oendl; | 574 | odebug << "LibMadPlugin::audioSamples: " << d->frame.header.duration.seconds << "*" << d->frame.header.samplerate << oendl; |
575 | return d->frame.header.duration.seconds * d->frame.header.samplerate; | 575 | return d->frame.header.duration.seconds * d->frame.header.samplerate; |
576 | */ | 576 | */ |
577 | if ( d->frame.header.bitrate == 0 ) | 577 | if ( d->frame.header.bitrate == 0 ) |
578 | return 0; | 578 | return 0; |
579 | int samples = (d->input.fileLength / (d->frame.header.bitrate/8)) * d->frame.header.samplerate; | 579 | int samples = (d->input.fileLength / (d->frame.header.bitrate/8)) * d->frame.header.samplerate; |
580 | 580 | ||
581 | // qDebug( "LibMadPlugin::audioSamples: %i * %i * 8 / %i", (int)d->input.fileLength, | 581 | // odebug << "LibMadPlugin::audioSamples: " << (int)d->input.fileLength |
582 | // (int)d->frame.header.samplerate, (int)d->frame.header.bitrate ); | 582 | // << " * " << (int)d->frame.header.samplerate << " * 8 / " << (int)d->frame.header.bitrate << oendl; |
583 | // odebug << "LibMadPlugin::audioSamples: " << samples << "" << oendl; | 583 | // odebug << "LibMadPlugin::audioSamples: " << samples << "" << oendl; |
584 | 584 | ||
585 | return samples; | 585 | return samples; |
586 | 586 | ||
587 | // return 10000000; | 587 | // return 10000000; |
588 | } | 588 | } |
589 | 589 | ||
590 | 590 | ||