diff options
author | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-06-08 13:56:31 (GMT) |
---|---|---|
committer | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-07-07 15:58:13 (GMT) |
commit | 56a2b6315c44d10f2ca4c76729a53ad9dbed37f9 (patch) | |
tree | f651d55ec064ac2e48d28b531c6986a5b22540e8 /src/3rdparty | |
parent | 584309d3d42f3118efade8f499a3f223665f3d86 (diff) | |
download | Qt-56a2b6315c44d10f2ca4c76729a53ad9dbed37f9.zip Qt-56a2b6315c44d10f2ca4c76729a53ad9dbed37f9.tar.gz Qt-56a2b6315c44d10f2ca4c76729a53ad9dbed37f9.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.cpp | 2 | ||||
-rw-r--r-- | src/3rdparty/phonon/mmf/videoplayer_dsa.cpp | 2 |
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() |