From e8bad1f69d3e666e857fdc07bdcd988c22fbb357 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Wed, 26 Sep 2007 22:14:13 +0000 Subject: [PATCH] it seems phonon-xine can handle sound streams via data, so feel brave enough and enabling the embedded sounds code svn path=/trunk/KDE/kdegraphics/okular/; revision=717456 --- core/audioplayer.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/audioplayer.cpp b/core/audioplayer.cpp index 329998121..a186bab24 100644 --- a/core/audioplayer.cpp +++ b/core/audioplayer.cpp @@ -147,7 +147,6 @@ bool AudioPlayerPrivate::play( const SoundInfo& si ) } case Sound::Embedded: { -#if 0 // disable because of broken bytestream in xine :( QByteArray filedata = si.sound->data(); kDebug() << "[AudioPlayer::Playinfo::play()] Embedded," << filedata.length(); if ( !filedata.isEmpty() ) @@ -162,7 +161,6 @@ bool AudioPlayerPrivate::play( const SoundInfo& si ) valid = true; kDebug() << "[AudioPlayer::Playinfo::play()] PLAY data"; } -#endif break; } }