summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-05-30 00:14:35 (UTC)
committer llornkcor <llornkcor>2002-05-30 00:14:35 (UTC)
commit738c08d921cc12c9f6f7846e80889908dce06cc8 (patch) (side-by-side diff)
tree83f38f243388afb2312a46073f36e8fca5b32b5c
parent32e4668771e3fc4aad674796e20e4a24d1d09331 (diff)
downloadopie-738c08d921cc12c9f6f7846e80889908dce06cc8.zip
opie-738c08d921cc12c9f6f7846e80889908dce06cc8.tar.gz
opie-738c08d921cc12c9f6f7846e80889908dce06cc8.tar.bz2
fixed bug with mpeg3 not playing audio in videos
Diffstat (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
@@ -380,8 +380,12 @@ bool LoopControl::init( const QString& filename ) {
if ( hasAudioChannel ) {
int astream = 0;
- channels = mediaPlayerState->curDecoder()->audioChannels( astream );
- qDebug( "LC- channels = %d", channels );
+ if ( mediaPlayerState->curDecoder()->pluginName() == QString("LibMpeg3Plugin") )
+ channels = 2; //dont akx me why, but it needs this hack
+ else
+ channels = mediaPlayerState->curDecoder()->audioChannels( astream );
+
+ qDebug( "LC- channels = %d", channels );
if ( !total_audio_samples )
total_audio_samples = mediaPlayerState->curDecoder()->audioSamples( astream );