os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/eaacplusdecoderci.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef EAACPLUSDECODERCI_H
sl@0
    17
#define EAACPLUSDECODERCI_H
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
#include <mmf/common/mmfipc.h>
sl@0
    21
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    22
#include <mmf/common/mmfipcserver.h>
sl@0
    23
#endif
sl@0
    24
#include <mmf/server/mmfdevsoundcustominterface.h>
sl@0
    25
#include <mmf/server/mmfdevsoundcustomcommands.h>
sl@0
    26
#include <mmf/server/devsoundstandardcustominterfaces.h>
sl@0
    27
#include <mmf/plugin/mmfdevsoundcustominterface.hrh>
sl@0
    28
sl@0
    29
/**
sl@0
    30
 Enum to represent the methods called by this custom interface
sl@0
    31
 @internalComponent
sl@0
    32
 @prototype
sl@0
    33
 @file
sl@0
    34
 */
sl@0
    35
enum TMMFDevSoundCIEAacPlusDecoderCommands
sl@0
    36
	{
sl@0
    37
	EMMFDevSoundCIEAacPlusDecoderSetInputSamplingFrequency = 0,
sl@0
    38
	EMMFDevSoundCIEAacPlusDecoderSetAudioObjectType,
sl@0
    39
	EMMFDevSoundCIEAacPlusDecoderSetNumOfChannels,
sl@0
    40
	EMMFDevSoundCIEAacPlusDecoderSetSbr,
sl@0
    41
	EMMFDevSoundCIEAacPlusDecoderSetDownSampledMode,
sl@0
    42
	EMMFDevSoundCIEAacPlusDecoderApplyConfig,
sl@0
    43
	EMMFDevSoundCIEAacPlusDecoderGetInputSamplingFrequency,
sl@0
    44
	EMMFDevSoundCIEAacPlusDecoderGetAudioObjectType,
sl@0
    45
	EMMFDevSoundCIEAacPlusDecoderGetNumOfChannels,
sl@0
    46
	EMMFDevSoundCIEAacPlusDecoderGetSbr,
sl@0
    47
	EMMFDevSoundCIEAacPlusDecoderGetDownSampledMode
sl@0
    48
	};
sl@0
    49
sl@0
    50
sl@0
    51
/**
sl@0
    52
 CMMFEAacPlusDecoderMux - implementation of the EAAC+ Decoder custom interface pair
sl@0
    53
 @internalComponent
sl@0
    54
 @prototype
sl@0
    55
 @file
sl@0
    56
 */
sl@0
    57
class CMMFEAacPlusDecoderMux : public CBase,
sl@0
    58
							   public MMMFDevSoundCustomInterfaceMuxPlugin,
sl@0
    59
							   public MEAacPlusDecoderIntfc  
sl@0
    60
	{
sl@0
    61
public:
sl@0
    62
sl@0
    63
	// from MMMFDevSoundCustomInterfaceMuxPlugin
sl@0
    64
	/**
sl@0
    65
	Attempt to open the interface.
sl@0
    66
	@param aInterfaceId
sl@0
    67
		   The UID of the interface to open.
sl@0
    68
	@return One of the system wide error codes
sl@0
    69
	*/
sl@0
    70
	virtual TInt OpenInterface(TUid aInterfaceId);
sl@0
    71
sl@0
    72
	/**
sl@0
    73
	Equivalent to destructor.  Called to destroy plugin.
sl@0
    74
	*/
sl@0
    75
	virtual void Release();
sl@0
    76
	
sl@0
    77
	/**
sl@0
    78
	Pass destructor key.
sl@0
    79
	Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
sl@0
    80
	@param aDestructorKey
sl@0
    81
	       The Uid returned by REComSession::CreateImplementationL() or similar
sl@0
    82
	*/
sl@0
    83
	virtual void PassDestructorKey(TUid aDestructorKey);
sl@0
    84
	
sl@0
    85
	/**
sl@0
    86
	Complete construction.
sl@0
    87
	Pass additional values from the construction phase, used subsequently by the plugin.
sl@0
    88
	@param aCustomUtility
sl@0
    89
	       The custom interface utility used by the plugin to communicate with the remote
sl@0
    90
		   server side DeMux plugin
sl@0
    91
	@leave This method may leave with one of the system-wide error codes.
sl@0
    92
	*/
sl@0
    93
	virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
sl@0
    94
sl@0
    95
	/** 
sl@0
    96
	Return the custom interface
sl@0
    97
	@param aInterfaceId
sl@0
    98
		   The UID of the required custom interface
sl@0
    99
	@return The custom interface supported by this plugin
sl@0
   100
	*/
sl@0
   101
	virtual TAny* CustomInterface(TUid aInterfaceId);
sl@0
   102
sl@0
   103
	/**
sl@0
   104
	Instantiate a CI Mux class
sl@0
   105
	@leave This method may leave with one of the system-wide error codes.
sl@0
   106
	@return The pointer to the new class, cast to the Mux plugin mixin
sl@0
   107
	*/
sl@0
   108
	static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
sl@0
   109
sl@0
   110
	// from MEAacPlusDecoderIntfc
sl@0
   111
	/** 
sl@0
   112
	@see MEAacPlusDecoderIntfc
sl@0
   113
	*/
sl@0
   114
	virtual void SetInputSamplingFrequency(TUint aInputSamplingFrequency);
sl@0
   115
	
sl@0
   116
	/** 
sl@0
   117
	@see MEAacPlusDecoderIntfc
sl@0
   118
	*/
sl@0
   119
	virtual void SetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType);
sl@0
   120
	
sl@0
   121
	/** 
sl@0
   122
	@see MEAacPlusDecoderIntfc
sl@0
   123
	*/
sl@0
   124
	virtual void SetNumOfChannels(TUint aNumOfChannels);
sl@0
   125
	
sl@0
   126
	/** 
sl@0
   127
	@see MEAacPlusDecoderIntfc
sl@0
   128
	*/
sl@0
   129
	virtual void SetSbr(TBool aSbrEnabled);
sl@0
   130
	
sl@0
   131
	/** 
sl@0
   132
	@see MEAacPlusDecoderIntfc
sl@0
   133
	*/
sl@0
   134
	virtual void SetDownSampledMode(TBool aDsmEnabled);
sl@0
   135
	
sl@0
   136
	/** 
sl@0
   137
	@see MEAacPlusDecoderIntfc
sl@0
   138
	*/
sl@0
   139
	virtual TInt ApplyConfig();
sl@0
   140
	
sl@0
   141
	/** 
sl@0
   142
	@see MEAacPlusDecoderIntfc
sl@0
   143
	*/
sl@0
   144
	virtual TInt GetInputSamplingFrequency ( TUint& aInputSamplingFrequency );
sl@0
   145
	
sl@0
   146
	/** 
sl@0
   147
	@see MEAacPlusDecoderIntfc
sl@0
   148
	*/
sl@0
   149
	virtual TInt GetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType);
sl@0
   150
	
sl@0
   151
	/** 
sl@0
   152
	@see MEAacPlusDecoderIntfc
sl@0
   153
	*/
sl@0
   154
	virtual TInt GetNumOfChannels ( TUint& aNumOfChannels );
sl@0
   155
	
sl@0
   156
	/** 
sl@0
   157
	@see MEAacPlusDecoderIntfc
sl@0
   158
	*/
sl@0
   159
	virtual TInt GetSbr (TBool& aSbrEnabled);
sl@0
   160
	
sl@0
   161
	/** 
sl@0
   162
	@see MEAacPlusDecoderIntfc
sl@0
   163
	*/
sl@0
   164
	virtual TInt GetDownSampledMode (TBool& aDsmEnabled);
sl@0
   165
sl@0
   166
protected:
sl@0
   167
	CMMFEAacPlusDecoderMux();
sl@0
   168
	~CMMFEAacPlusDecoderMux();
sl@0
   169
sl@0
   170
protected:
sl@0
   171
	TUid iDestructorKey;
sl@0
   172
	TInt iRemoteHandle;
sl@0
   173
	MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
sl@0
   174
	};
sl@0
   175
sl@0
   176
/**
sl@0
   177
 CMMFEAacPlusDecoderDeMux - DeMux side of pair
sl@0
   178
 @internalComponent
sl@0
   179
 @prototype
sl@0
   180
 @file
sl@0
   181
 */
sl@0
   182
class CMMFEAacPlusDecoderDeMux : public CBase, public MMMFDevSoundCustomInterfaceDeMuxPlugin
sl@0
   183
	{
sl@0
   184
public:
sl@0
   185
	/**
sl@0
   186
	Instantiate a CMMFEAacPlusDecoderDeMux class
sl@0
   187
	@leave This method may leave with one of the system-wide error codes.
sl@0
   188
	@return A pointer to the new class cast to the DeMux plugin mixin
sl@0
   189
	*/
sl@0
   190
	static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
sl@0
   191
		
sl@0
   192
	/**
sl@0
   193
	Attempt to open the interface.
sl@0
   194
	@param aInterfaceId
sl@0
   195
		   The UID of the interface to open.
sl@0
   196
	@return A handle to the remote plugin
sl@0
   197
	*/
sl@0
   198
	virtual TInt OpenInterface(TUid aInterfaceId);
sl@0
   199
sl@0
   200
	/**
sl@0
   201
	Equivalent to destructor.  Called to destroy plugin.
sl@0
   202
	*/
sl@0
   203
	virtual void Release();
sl@0
   204
	/**
sl@0
   205
	Pass destructor key.
sl@0
   206
	Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
sl@0
   207
	@param aDestructorKey
sl@0
   208
	       The Uid returned by REComSession::CreateImplementationL() or similar
sl@0
   209
	*/
sl@0
   210
	virtual void PassDestructorKey(TUid aDestructorKey);
sl@0
   211
	
sl@0
   212
	/**
sl@0
   213
	Set the target of the custom interface call
sl@0
   214
	@param aTarget
sl@0
   215
	       The DevSound to call the custom interface on.
sl@0
   216
	*/
sl@0
   217
	virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
sl@0
   218
	
sl@0
   219
	/**
sl@0
   220
	Complete construction.
sl@0
   221
	@param aUtility
sl@0
   222
	       The DeMux utility to use
sl@0
   223
	@leave This method may leave with one of the system-wide error codes.
sl@0
   224
	*/
sl@0
   225
	virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
sl@0
   226
sl@0
   227
	/**
sl@0
   228
	Refresh the current custom interface connections
sl@0
   229
	@leave This method may leave with one of the system-wide error codes.
sl@0
   230
	*/
sl@0
   231
	virtual void RefreshL();
sl@0
   232
sl@0
   233
	// from MMMFDevSoundCustomInterfaceDeMuxPlugin
sl@0
   234
	/**
sl@0
   235
	Open the slave
sl@0
   236
	@param aInterface
sl@0
   237
		   The UID of the requested interface
sl@0
   238
	@param aPackageBuf
sl@0
   239
		   A package of data that can be supplied for initialisation
sl@0
   240
	@leave This method may leave with one of the system-wide error codes.
sl@0
   241
	@return The result of the operation
sl@0
   242
	*/
sl@0
   243
	virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
sl@0
   244
sl@0
   245
	/** 
sl@0
   246
	Close the slave
sl@0
   247
	@param aHandle
sl@0
   248
		   The handle of the slave plugin
sl@0
   249
	@leave This method may leave with one of the system-wide error codes.
sl@0
   250
	*/
sl@0
   251
	virtual void DoCloseSlaveL(TInt aHandle);
sl@0
   252
sl@0
   253
	// original RMessage is supplied so that remote demux plugin can extract necessary details
sl@0
   254
	// using DeMux utility
sl@0
   255
sl@0
   256
	/**
sl@0
   257
	Relay the synchronous custom command onto the slave
sl@0
   258
	@param aMessage
sl@0
   259
		   The IPC message to be sent to the slave
sl@0
   260
	@leave This method may leave with one of the system-wide error codes.
sl@0
   261
	@return The result of the operation
sl@0
   262
	*/
sl@0
   263
	virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
sl@0
   264
sl@0
   265
	/**
sl@0
   266
	Relay the synchronous custom command onto the slave and obtain a result
sl@0
   267
	@param aMessage
sl@0
   268
		   The IPC message to be sent to the slave
sl@0
   269
	@leave This method may leave with one of the system-wide error codes.
sl@0
   270
	@return The result of the operation
sl@0
   271
	*/
sl@0
   272
	virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
sl@0
   273
sl@0
   274
	/**
sl@0
   275
	Relay an asynchronous command onto the slave
sl@0
   276
	@param aMessage
sl@0
   277
		   The IPC message to be sent to the slave
sl@0
   278
	@leave This method may leave with one of the system-wide error codes.
sl@0
   279
	*/
sl@0
   280
	virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
sl@0
   281
sl@0
   282
	/**
sl@0
   283
	Relay an asynchronous command onto the slave and obtain a result
sl@0
   284
	@param aMessage
sl@0
   285
		   The IPC message to be sent to the slave@param aMessage
sl@0
   286
	@leave This method may leave with one of the system-wide error codes.
sl@0
   287
	*/
sl@0
   288
	virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
sl@0
   289
sl@0
   290
protected:
sl@0
   291
	~CMMFEAacPlusDecoderDeMux();
sl@0
   292
	CMMFEAacPlusDecoderDeMux();
sl@0
   293
sl@0
   294
	// mirrors MEAacPlusDecoderIntfc methods.
sl@0
   295
	void DoSetInputSamplingFrequency(TUint aInputSamplingFrequency);
sl@0
   296
	void DoSetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType);
sl@0
   297
	void DoSetNumOfChannels(TUint aNumOfChannels);
sl@0
   298
	void DoSetSbr(TBool aSbrEnabled);
sl@0
   299
	void DoSetDownSampledMode(TBool aDsmEnabled);
sl@0
   300
	TInt DoApplyConfig();
sl@0
   301
	TInt DoGetInputSamplingFrequency(TUint& aInputSamplingFrequency);
sl@0
   302
	TInt DoGetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType);
sl@0
   303
	TInt DoGetNumOfChannels(TUint& aNumOfChannels);
sl@0
   304
	TInt DoGetSbr(TBool& aSbrEnabled);
sl@0
   305
	TInt DoGetDownSampledMode(TBool& aDsmEnabled);
sl@0
   306
	
sl@0
   307
protected:
sl@0
   308
	MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
sl@0
   309
	MMMFDevSoundCustomInterfaceTarget* iTarget;
sl@0
   310
	TUid iDestructorKey;
sl@0
   311
	MEAacPlusDecoderIntfc* iInterfaceEAacPlusDecoder;
sl@0
   312
	};
sl@0
   313
sl@0
   314
#endif