mmsharing/mmshengine/src/musengvideoplayerbase.cpp
branchRCL_3
changeset 33 bc78a40cd63c
parent 32 73a1feb507fb
child 35 6c57ef9392d2
--- a/mmsharing/mmshengine/src/musengvideoplayerbase.cpp	Tue Aug 31 15:12:07 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,210 +0,0 @@
-/*
-* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description: 
-*
-*/
-
-// USER
-#include "musenglocalvideoplayer.h"
-#include "musengcamerahandler.h"
-#include "musengmceutils.h"
-#include "musengdisplayhandler.h"
-
-// SYSTEM
-#include <mcesession.h>
-#include <mcevideostream.h>
-
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-CMusEngVideoPlayerBase::CMusEngVideoPlayerBase( 
-    MMusEngDisplayHandler& aDisplayHandler,
-    MLcAudioControl& aLcAudioControl ) :
-    iDisplayHandler( aDisplayHandler ),
-    iLcAudioControl( aLcAudioControl )
-    {
-    }
-
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-CMusEngVideoPlayerBase::~CMusEngVideoPlayerBase()
-    {
-    }
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-void CMusEngVideoPlayerBase::SetMceSession( CMceSession* aMceSession )
-    {
-    iMceSession = aMceSession;
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcVideoPlayer
-// -----------------------------------------------------------------------------
-//
-void CMusEngVideoPlayerBase::LcPlayL( TLcVideoPlayerSource /*aSource*/ )
-    {
-    // NOP
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcVideoPlayer
-// -----------------------------------------------------------------------------
-//
-void CMusEngVideoPlayerBase::LcPauseL()
-    {
-    // NOP
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcVideoPlayer
-// -----------------------------------------------------------------------------
-//
-MLcWindow* CMusEngVideoPlayerBase::LcWindow()
-    {
-    return this;
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcVideoPlayer
-// -----------------------------------------------------------------------------
-//
-MLcCameraControl* CMusEngVideoPlayerBase::LcCameraControl()
-    {
-    return NULL;
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcVideoPlayer
-// -----------------------------------------------------------------------------
-//
-MLcSourceFileControl* CMusEngVideoPlayerBase::LcSourceFileControl()
-    {
-    return NULL;
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcVideoPlayer
-// -----------------------------------------------------------------------------
-//
-MLcDestinationFileControl* CMusEngVideoPlayerBase::LcDestinationFileControl()
-    {
-    return NULL;
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcVideoPlayer
-// -----------------------------------------------------------------------------
-//
-MLcAudioControl* CMusEngVideoPlayerBase::LcAudioControl()
-    {
-    return &iLcAudioControl;
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcVideoPlayer
-// -----------------------------------------------------------------------------
-//
-MLcZoomControl* CMusEngVideoPlayerBase::LcZoomControl()
-    {
-    return NULL;
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcVideoPlayer
-// -----------------------------------------------------------------------------
-//
-MLcBrightnessControl* CMusEngVideoPlayerBase::LcBrightnessControl()
-    {
-    return NULL;
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcWindow
-// -----------------------------------------------------------------------------
-//
-void CMusEngVideoPlayerBase::EnableLcWindowL( TBool aEnable )
-    {
-    iDisplayHandler.EnableDisplayL( aEnable );
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcWindow
-// -----------------------------------------------------------------------------
-//
-TBool CMusEngVideoPlayerBase::IsLcWindowEnabled()
-    {
-    return iDisplayHandler.IsDisplayEnabled();
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcWindow
-// -----------------------------------------------------------------------------
-//
-void CMusEngVideoPlayerBase::SetLcWindowRectL( TRect aRect )
-    {
-    iDisplayHandler.SetRectL( aRect );
-    }
-
-
-// -----------------------------------------------------------------------------
-// From MLcWindow
-// -----------------------------------------------------------------------------
-//
-TRect CMusEngVideoPlayerBase::LcWindowRect()
-    {
-    return iDisplayHandler.Rect();
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcWindow
-// -----------------------------------------------------------------------------
-//
-void CMusEngVideoPlayerBase::SetLcWindowOrientationL( 
-    TLcWindowOrientation aOrientation )
-    {
-    if ( aOrientation == MLcWindow::ELandscape )
-        {
-        iDisplayHandler.SetOrientationL( MMusEngDisplayHandler::ELandscape );
-        }
-    else 
-        {
-        iDisplayHandler.SetOrientationL( MMusEngDisplayHandler::EPortrait );
-        }
-    }
-
-// -----------------------------------------------------------------------------
-// From MLcWindow
-// -----------------------------------------------------------------------------
-//
-MLcWindow::TLcWindowOrientation CMusEngVideoPlayerBase::LcWindowOrientationL()
-    {
-    MLcWindow::TLcWindowOrientation orientation;
-    if ( iDisplayHandler.OrientationL() == MMusEngDisplayHandler::ELandscape )
-        {
-        orientation = MLcWindow::ELandscape;
-        }
-    else
-        {
-        orientation = MLcWindow::EPortrait;
-        }
-    return orientation;
-    }