videoplayerapp/videoplayerengine/src/videoserviceplay.cpp
changeset 44 518105d52e45
parent 38 ff53afa8ad05
equal deleted inserted replaced
42:17f382c040b1 44:518105d52e45
    13 *
    13 *
    14 * Description:  Implementation of VideoServicePlay
    14 * Description:  Implementation of VideoServicePlay
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 // Version : %version: da1mmcf#5 %
    18 // Version : %version: da1mmcf#6 %
    19 
    19 
    20 #include "videoservices.h"
    20 #include "videoservices.h"
    21 #include "videoserviceplay.h"
    21 #include "videoserviceplay.h"
    22 #include "videoplayerengine.h"
    22 #include "videoplayerengine.h"
    23 #include "mpxvideo_debug.h"
    23 #include "mpxvideo_debug.h"
    26 // -------------------------------------------------------------------------------------------------
    26 // -------------------------------------------------------------------------------------------------
    27 // VideoServicePlay()
    27 // VideoServicePlay()
    28 // -------------------------------------------------------------------------------------------------
    28 // -------------------------------------------------------------------------------------------------
    29 // 
    29 // 
    30 VideoServicePlay::VideoServicePlay( VideoServices* parent, 
    30 VideoServicePlay::VideoServicePlay( VideoServices* parent, 
    31                                     QVideoPlayerEngine* engine, 
    31                                     VideoPlayerEngine* engine, 
    32                                     QLatin1String service )
    32                                     QLatin1String service )
    33     : XQServiceProvider( service, parent )
    33     : XQServiceProvider( service, parent )
    34     , mEngine( engine )
    34     , mEngine( engine )
    35     , mServiceApp( parent )
    35     , mServiceApp( parent )
    36 {
    36 {
    49 
    49 
    50 // -------------------------------------------------------------------------------------------------
    50 // -------------------------------------------------------------------------------------------------
    51 // setEngine()
    51 // setEngine()
    52 // -------------------------------------------------------------------------------------------------
    52 // -------------------------------------------------------------------------------------------------
    53 // 
    53 // 
    54 void VideoServicePlay::setEngine( QVideoPlayerEngine* engine )
    54 void VideoServicePlay::setEngine( VideoPlayerEngine* engine )
    55 {
    55 {
    56     MPX_DEBUG(_L("VideoServicePlay::setEngine()"));
    56     MPX_DEBUG(_L("VideoServicePlay::setEngine()"));
    57     mEngine = engine;
    57     mEngine = engine;
    58 }
    58 }
    59 
    59