videoplayback/videohelix/inc/mpxvideoplayerutility.h
changeset 0 96612d01cf9f
child 1 6711b85517b7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videoplayback/videohelix/inc/mpxvideoplayerutility.h	Mon Jan 18 20:21:12 2010 +0200
@@ -0,0 +1,160 @@
+/*
+* 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:  This class is the interface between the playback plugin and RMMFController
+ *
+*/
+
+// Version : %version: 8 %
+
+
+#ifndef __MPXVIDEOPLAYERUTILITY__
+#define __MPXVIDEOPLAYERUTILITY__
+
+//
+//  INCLUDES
+//
+#include <mmf/common/mmfcontroller.h>
+
+#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
+#include <mmf/common/mmfstandardcustomcommandsimpl.h>
+#else
+#include <mmf/common/mmfstandardcustomcommands.h>
+#endif
+
+#include <mmf/common/mmfdrmcustomcommands.h>
+
+#ifdef SYMBIAN_BUILD_GCE
+#include <mmf/common/mmfvideosurfacecustomcommands.h>
+#endif
+
+//
+//  FORWARD DECLARATIONS
+//
+class CMPXVideoPlaybackController;
+
+//
+//  CLASS DECLARATION
+//
+
+NONSHARABLE_CLASS( CMpxVideoPlayerUtility ) : public CBase,
+                                              public MMMFControllerEventMonitorObserver
+{
+    public:
+
+        static CMpxVideoPlayerUtility* NewL( CMPXVideoPlaybackController* aVideoPlaybackCtrl );
+        ~CMpxVideoPlayerUtility();
+
+        void Reset();
+
+        void OpenFileL( const TDesC& aFileName );
+        void OpenFileL( const RFile& aFile );
+        void OpenUrlL( const TDesC& aUrl, TInt aApId );
+
+        TTimeIntervalMicroSeconds PositionL() const;
+        TTimeIntervalMicroSeconds DurationL() const;
+
+        TInt NumberOfMetaDataEntriesL() const;
+        CMMFMetaDataEntry* MetaDataEntryL( TInt aIndex ) const;
+
+        TBool AudioEnabledL() const;
+        void SetVolumeL( TInt aVolume );
+        TInt Volume() const;
+        TInt MaxVolume() const;
+
+        void VideoFrameSizeL( TSize& aSize ) const;
+        TInt VideoBitRateL() const;
+        TInt AudioBitRateL() const;
+        TInt VideoFormatMimeType( TDes8& aMimeType ) const;
+        TUint32 FourCCCode() const;
+        void RefreshFrameL();
+
+        void RestartDsa( const TRegion& aRegion );
+        void AbortDsa();
+        void SetDisplayWindowL( const TRect& aScreenRect,
+                                const TRect& aClipRect,
+                                const TRegion& aDrawingRegion );
+
+        TInt CustomCommandSync( const TMMFMessageDestinationPckg& aDestination,
+                                TInt aFunction,
+                                const TDesC8& aDataTo1,
+                                const TDesC8& aDataTo2 );
+
+        void Prepare();
+        void Play();
+        void PauseL();
+        void Close();
+        TInt Stop();
+
+        void SetPositionL( const TTimeIntervalMicroSeconds& aPosition );
+
+        void SetPlayVelocityL( TInt aVelocity );
+
+        void GetVideoLoadingProgressL( TInt& aPercentageProgress );
+
+        //
+        //  MMMFControllerEventMonitorObserver Implementation
+        //
+        void HandleEvent( const TMMFEvent& aEvent );
+
+#ifdef SYMBIAN_ENABLE_64_BIT_FILE_SERVER_API
+        void OpenFile64L( const RFile64& aFile );
+#endif // SYMBIAN_ENABLE_64_BIT_FILE_SERVER_API
+
+#ifdef SYMBIAN_BUILD_GCE
+
+        TInt VideoSurfaceCreated();
+        TInt SurfaceParametersChanged();
+        TInt RemoveSurface();
+
+        void SendSurfaceCommandL( TInt aCmd );
+
+        void SendSurfaceCommandL( TInt aCmd,
+                                  const TSurfaceId& aSurfaceId,
+                                  const TRect& aCropRect,
+                                  TVideoAspectRatio aAspectRatio );
+
+#endif
+
+    private:
+
+        void ConstructL();
+        CMpxVideoPlayerUtility( CMPXVideoPlaybackController* aVideoPlaybackCtrl );
+        void OpenControllerL();
+
+    private:
+
+        //
+        //  Data
+        //
+        CMPXVideoPlaybackController*              iVideoPlaybackController;
+
+        RMMFController                            iController;
+        RMMFVideoControllerCustomCommands         iVideoControllerCustomCommands;
+        RMMFVideoPlayControllerCustomCommands     iVideoPlayControllerCustomCommands;
+        RMMFAudioPlayDeviceCustomCommands         iAudioPlayDeviceCustomCommands;
+        RMMFDRMCustomCommands                     iDrmCustomCommands;
+        RMMFVideoPlayControllerExtCustomCommands  iVideoPlayControllerExtCustomCommands;
+
+#ifdef SYMBIAN_BUILD_GCE
+        RMMFVideoPlaySurfaceSupportCustomCommands iVideoPlaySurfaceSupportCustomCommands;
+
+        TSurfaceId                                iSurfaceId;
+#endif
+
+        CMMFControllerEventMonitor*               iControllerEventMonitor;
+
+        TBool                                     iDirectScreenAccessAbort;
+};
+
+#endif /* __MPXVIDEOPLAYERUTILITY__ */