summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/loopcontrol.cpp
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/loopcontrol.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/loopcontrol.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/core/multimedia/opieplayer/loopcontrol.cpp b/core/multimedia/opieplayer/loopcontrol.cpp
index 310d512..6f86b4a 100644
--- a/core/multimedia/opieplayer/loopcontrol.cpp
+++ b/core/multimedia/opieplayer/loopcontrol.cpp
@@ -382,4 +382,8 @@ bool LoopControl::init( const QString& filename ) {
382 382
383 channels = mediaPlayerState->curDecoder()->audioChannels( astream ); 383 if ( mediaPlayerState->curDecoder()->pluginName() == QString("LibMpeg3Plugin") )
384 qDebug( "LC- channels = %d", channels ); 384 channels = 2; //dont akx me why, but it needs this hack
385 else
386 channels = mediaPlayerState->curDecoder()->audioChannels( astream );
387
388 qDebug( "LC- channels = %d", channels );
385 389