os/mm/devsound/a3facf/inc/maudiogaincontrol.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/devsound/a3facf/inc/maudiogaincontrol.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,150 @@
     1.4 +/*
     1.5 +* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +
    1.24 +/**
    1.25 + @file
    1.26 + @publishedPartner
    1.27 + @released
    1.28 +*/
    1.29 +
    1.30 +#ifndef MAUDIOGAINCONTROL_H
    1.31 +#define MAUDIOGAINCONTROL_H
    1.32 +
    1.33 +#include <e32base.h>
    1.34 +#include <f32file.h>
    1.35 +#include <a3f/a3fbase.h>
    1.36 +#include <a3f/maudioprocessingunit.h>
    1.37 +
    1.38 +class MAudioGainControlObserver;
    1.39 +
    1.40 +
    1.41 +/**
    1.42 + * Interface to gain control processing unit.
    1.43 + *
    1.44 + * Gain control is used for controlling volume and gain related settings of an audio stream.
    1.45 + */
    1.46 +class MAudioGainControl
    1.47 +	{
    1.48 +	public:
    1.49 +
    1.50 +	/** 
    1.51 +	* Returns the maximum gain the device supports.
    1.52 +	*
    1.53 +	* The maximum gain value depends on the setup of the stream.
    1.54 +	* 
    1.55 +	* this is the maximum gain value which can be passed to SetGain().
    1.56 +	* @param aMaxGain On return, contains the maximum gain value, provided that the returned error code is KErrNone.
    1.57 +	* @return An error code. KErrNone if the maximum gain value is available, otherwise one of the system wide error codes.
    1.58 +	*/
    1.59 +	virtual TInt GetMaxGain(TInt& aMaxGain) const= 0 ;
    1.60 +
    1.61 +	/**
    1.62 +	* Returns the maximum ramp time that is supported for the associated stream.
    1.63 +	*
    1.64 +	* The maximum ramp time may be different in playback and recording modes,
    1.65 +	* so the value should be checked before setting the ramptime. this function
    1.66 +	* also does not take into account any possible ongoing ramp.
    1.67 +	* 
    1.68 +	* this is the maximum ramp time value which can be passed to SetGain().
    1.69 +	* @param aMaxRampTime On return contains the maximum ramp time.
    1.70 +	* The value is platform and stream setup dependent but is always greater than or equal to zero.
    1.71 +	* @return An error code. KErrNone on success, otherwise one of the system wide error codes.
    1.72 +	*/
    1.73 +	virtual TInt GetMaxRampTime(TTimeIntervalMicroSeconds& aMaxRampTime) const= 0;
    1.74 +
    1.75 +	/**
    1.76 +	* Requests changes to the audio gain on a channel-by-channel basis. 
    1.77 +
    1.78 +	* Note that the values for each channel are independent of each other. 
    1.79 +	* The call is asynchronous in nature, resulting in a GainChanged() 
    1.80 +	* callback, and the request is only applied following a successful 
    1.81 +	* Commit() cycle. 
    1.82 +	* The callback signals the receipt of the SetGain() call from the 
    1.83 +	* underlying adaptation, and not (say) the completion of a ramp operation. 
    1.84 +	* The actual gains will only change once the associated Audio Stream becomes EActive. 
    1.85 +	* If the associated Audio Stream is already EActive 
    1.86 +	* then the change will start immediately following the next successful Commit() cycle. 
    1.87 +	* MMRC may choose to modify or ignore the requested gains. 
    1.88 +
    1.89 +	* @param aChannels	 Contains the channels for which the gain should be set and the gain value for those channels.
    1.90 +	* @param aRampOperation  How aRampDuration is to be interpreted.(see below)
    1.91 +	* @param aRampDuration Duration in microseconds.
    1.92 +	* @return KErrNone if initially successful.
    1.93 +	*         KErrNotSupported if the SetGain() call referred to non-existent channels.
    1.94 +	*         KErrArgument if aGain of less than 0 or larger than max gain, the same channel is specified multiple times, 
    1.95 +	*           or aRampDuration is less than 0 or greater than max ramp duration.
    1.96 +	*         KErrA3fUnsupportedRamp  if the ramp operation requested is not supported, or the Uid value supplies is unknown.
    1.97 +	* Other system-wide error codes are also possible.
    1.98 +	* These errors could instead by returned as part of the subsequent GainChanged() callback – depending on the a3f adaptation.
    1.99 +	* Also note: the requested parameters are specific to the associated stream. 
   1.100 +	* If more than one stream is concurrently active to the same device, 
   1.101 +	* it is up to the adaptation to arrange both the device gains the mixer and splitter gains to achieve a similar effect to the several streams being played through separate devices and mixed post-amplification.
   1.102 +	*/
   1.103 +	virtual TInt SetGain(RArray<TAudioChannelGain>& aChannels, TUid aRampOperation, const TTimeIntervalMicroSeconds& aRampDuration)=0;
   1.104 +
   1.105 +	/**
   1.106 +	* Sets the audio channel gain.
   1.107 +	* 
   1.108 +	* By default all channels are set to use same gain value. Note that the
   1.109 +	* values for each channel are independent of each other, meaning that
   1.110 +	* they only control the gain level on which the particular channel is
   1.111 +	* being used and there is no limitation requiring the sum of all channels to be 100.
   1.112 +	* 
   1.113 +	* The gain values will be applied once the associated stream is active.
   1.114 +	* if the stream is active while this function is called, then the values
   1.115 +	* are applied immediately.
   1.116 +	*
   1.117 +	* @param aChannels Contains the channels for which the gain should be set and the gain value for those channels.
   1.118 +	* @return An error code. KErrNone on success.
   1.119 +	*                        KErrNotSupported if gain for unsupported channels is tried to be set.
   1.120 +	*                        KErrArgument if a value of less than 0 or larger than max gain is tried to be set as gain.
   1.121 +	*                        Other system wide error codes are also possible.
   1.122 +	*/
   1.123 +	virtual TInt SetGain(RArray<TAudioChannelGain>& aChannels)=0;
   1.124 +
   1.125 +	/**
   1.126 +	* Returns channel specific gain settings.
   1.127 +	*
   1.128 +	* @param  aChannels On return contains current gain settings for each audio channel.
   1.129 +	* @return An error code. KErrNone on success.
   1.130 +	*                        KErrArgument if the array passed in as a parameter is not empty.
   1.131 +	*                        KErrOutOfMemory in case of memory exhaustion.
   1.132 +	*                        Other system wide error codes are also possible.
   1.133 +	*/
   1.134 +	virtual TInt GetGain(RArray<TAudioChannelGain>& aChannels) const= 0;
   1.135 +
   1.136 +	/**
   1.137 +	* Registers an observer for receiving callbacks.
   1.138 +	*
   1.139 +	* @param aObserver a reference to the observer to register.
   1.140 +	* @return An error code. KErrNone on success, otherwise one of the system wide error codes.
   1.141 +	*/
   1.142 +	virtual TInt RegisterAudioGainControlObserver(MAudioGainControlObserver& aObserver)=0;
   1.143 +
   1.144 +	/**
   1.145 +	* Unregisters an observer.
   1.146 +	*
   1.147 +	* @param aObserver a reference to observer to unregister.
   1.148 +	*/
   1.149 +	virtual void UnregisterAudioGainControlObserver(MAudioGainControlObserver& aObserver)=0;
   1.150 +
   1.151 +	};
   1.152 +
   1.153 +#endif // MAUDIOGAINCONTROL_H