summaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorGareth Stockwell <ext-gareth.stockwell@nokia.com>2010-06-08 13:56:31 (GMT)
committerGareth Stockwell <ext-gareth.stockwell@nokia.com>2010-07-07 12:20:50 (GMT)
commit80af9a7b09b531a849b863695b244dd1df7dfb1d (patch)
treea4b64a51abbc2f23c6c31ed95bde5fc2302fa4a5 /src/3rdparty
parent0c71b098965ce4779a7da785249497c15b9d1d14 (diff)
downloadQt-80af9a7b09b531a849b863695b244dd1df7dfb1d.zip
Qt-80af9a7b09b531a849b863695b244dd1df7dfb1d.tar.gz
Qt-80af9a7b09b531a849b863695b244dd1df7dfb1d.tar.bz2
Enable bufferStatus signal during video clip loading on NGA platforms
CVideoPlayerUtility::RegisterForVideoLoadingNotification() was only called in the DSA, not the NGA, variant of the Phonon MMF backend. Task-number: QTBUG-11378 Reviewed-by: Thierry Bastian
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/phonon/mmf/abstractvideoplayer.cpp2
-rw-r--r--src/3rdparty/phonon/mmf/videoplayer_dsa.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/phonon/mmf/abstractvideoplayer.cpp b/src/3rdparty/phonon/mmf/abstractvideoplayer.cpp
index ecfce9e..c45ed98 100644
--- a/src/3rdparty/phonon/mmf/abstractvideoplayer.cpp
+++ b/src/3rdparty/phonon/mmf/abstractvideoplayer.cpp
@@ -66,6 +66,8 @@ void MMF::AbstractVideoPlayer::construct()
createPlayer();
+ m_player->RegisterForVideoLoadingNotification(*this);
+
TRACE_EXIT_0();
}
diff --git a/src/3rdparty/phonon/mmf/videoplayer_dsa.cpp b/src/3rdparty/phonon/mmf/videoplayer_dsa.cpp
index f0255b1..deb9774 100644
--- a/src/3rdparty/phonon/mmf/videoplayer_dsa.cpp
+++ b/src/3rdparty/phonon/mmf/videoplayer_dsa.cpp
@@ -126,8 +126,6 @@ void MMF::DsaVideoPlayer::createPlayer()
// CVideoPlayerUtility::NewL starts DSA
m_dsaActive = true;
-
- m_player->RegisterForVideoLoadingNotification(*this);
}
void MMF::DsaVideoPlayer::initVideoOutput()