author | ar <ar> | 2004-05-02 21:42:26 (UTC) |
---|---|---|
committer | ar <ar> | 2004-05-02 21:42:26 (UTC) |
commit | 0bbed7c9d1fe9e617ba3825b0883b7af75ee0733 (patch) (unidiff) | |
tree | 245b60310031264faed44d34bf980182257eec54 | |
parent | 0a4cac124105a5732e55cb34c6b37be75083a395 (diff) | |
download | opie-0bbed7c9d1fe9e617ba3825b0883b7af75ee0733.zip opie-0bbed7c9d1fe9e617ba3825b0883b7af75ee0733.tar.gz opie-0bbed7c9d1fe9e617ba3825b0883b7af75ee0733.tar.bz2 |
- convert qDebug to odebug
-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 | |||
@@ -549,66 +549,66 @@ int LibMadPlugin::audioStreams() { | |||
549 | int LibMadPlugin::audioChannels( int ) { | 549 | int LibMadPlugin::audioChannels( int ) { |
550 | debugMsg( "LibMadPlugin::audioChannels" ); | 550 | debugMsg( "LibMadPlugin::audioChannels" ); |
551 | /* | 551 | /* |
552 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); | 552 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); |
553 | odebug << "LibMadPlugin::audioChannels: " << d->frame.header.mode > 0 ? 2 : 1 << "" << oendl; | 553 | odebug << "LibMadPlugin::audioChannels: " << d->frame.header.mode > 0 ? 2 : 1 << "" << oendl; |
554 | return d->frame.header.mode > 0 ? 2 : 1; | 554 | return d->frame.header.mode > 0 ? 2 : 1; |
555 | */ | 555 | */ |
556 | return 2; | 556 | return 2; |
557 | } | 557 | } |
558 | 558 | ||
559 | 559 | ||
560 | int LibMadPlugin::audioFrequency( int ) { | 560 | int LibMadPlugin::audioFrequency( int ) { |
561 | debugMsg( "LibMadPlugin::audioFrequency" ); | 561 | debugMsg( "LibMadPlugin::audioFrequency" ); |
562 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); | 562 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); |
563 | // odebug << "LibMadPlugin::audioFrequency: " << d->frame.header.samplerate << "" << oendl; | 563 | // odebug << "LibMadPlugin::audioFrequency: " << d->frame.header.samplerate << "" << oendl; |
564 | return d->frame.header.samplerate; | 564 | return d->frame.header.samplerate; |
565 | } | 565 | } |
566 | 566 | ||
567 | 567 | ||
568 | int LibMadPlugin::audioSamples( int ) { | 568 | int LibMadPlugin::audioSamples( int ) { |
569 | debugMsg( "LibMadPlugin::audioSamples" ); | 569 | debugMsg( "LibMadPlugin::audioSamples" ); |
570 | 570 | ||
571 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); | 571 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); |
572 | mad_header_decode( (struct mad_header *)&d->frame.header, &d->stream ); | 572 | mad_header_decode( (struct mad_header *)&d->frame.header, &d->stream ); |
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 | ||
591 | bool LibMadPlugin::audioSetSample( long, int ) { | 591 | bool LibMadPlugin::audioSetSample( long, int ) { |
592 | debugMsg( "LibMadPlugin::audioSetSample" ); | 592 | debugMsg( "LibMadPlugin::audioSetSample" ); |
593 | 593 | ||
594 | // long totalSamples = audioSamples(0); | 594 | // long totalSamples = audioSamples(0); |
595 | // if ( totalSamples <= 1 ) | 595 | // if ( totalSamples <= 1 ) |
596 | // return FALSE; | 596 | // return FALSE; |
597 | 597 | ||
598 | // // Seek to requested position | 598 | // // Seek to requested position |
599 | // odebug << "seek pos: " << (int)((double)pos * d->input.fileLength / totalSamples) << "" << oendl; | 599 | // odebug << "seek pos: " << (int)((double)pos * d->input.fileLength / totalSamples) << "" << oendl; |
600 | // ::lseek( d->input.fd, (long)((double)pos * d->input.fileLength / totalSamples), SEEK_SET ); | 600 | // ::lseek( d->input.fd, (long)((double)pos * d->input.fileLength / totalSamples), SEEK_SET ); |
601 | // mad_stream_sync(&d->stream); | 601 | // mad_stream_sync(&d->stream); |
602 | 602 | ||
603 | // mad_stream_init(&d->stream); | 603 | // mad_stream_init(&d->stream); |
604 | // mad_frame_init(&d->frame); | 604 | // mad_frame_init(&d->frame); |
605 | // mad_synth_init(&d->synth); | 605 | // mad_synth_init(&d->synth); |
606 | 606 | ||
607 | // return TRUE; | 607 | // return TRUE; |
608 | debugMsg( "LibMadPlugin::audioSetSample" ); | 608 | debugMsg( "LibMadPlugin::audioSetSample" ); |
609 | return FALSE; | 609 | return FALSE; |
610 | } | 610 | } |
611 | 611 | ||
612 | 612 | ||
613 | long LibMadPlugin::audioGetSample( int ) { | 613 | long LibMadPlugin::audioGetSample( int ) { |
614 | debugMsg( "LibMadPlugin::audioGetSample" ); | 614 | debugMsg( "LibMadPlugin::audioGetSample" ); |