sl@0: /* sl@0: * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: sl@0: #ifndef MAUDIOGAINCONTROL_H sl@0: #define MAUDIOGAINCONTROL_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: class MAudioGainControlObserver; sl@0: sl@0: sl@0: /** sl@0: * Interface to gain control processing unit. sl@0: * sl@0: * Gain control is used for controlling volume and gain related settings of an audio stream. sl@0: */ sl@0: class MAudioGainControl sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: * Returns the maximum gain the device supports. sl@0: * sl@0: * The maximum gain value depends on the setup of the stream. sl@0: * sl@0: * this is the maximum gain value which can be passed to SetGain(). sl@0: * @param aMaxGain On return, contains the maximum gain value, provided that the returned error code is KErrNone. sl@0: * @return An error code. KErrNone if the maximum gain value is available, otherwise one of the system wide error codes. sl@0: */ sl@0: virtual TInt GetMaxGain(TInt& aMaxGain) const= 0 ; sl@0: sl@0: /** sl@0: * Returns the maximum ramp time that is supported for the associated stream. sl@0: * sl@0: * The maximum ramp time may be different in playback and recording modes, sl@0: * so the value should be checked before setting the ramptime. this function sl@0: * also does not take into account any possible ongoing ramp. sl@0: * sl@0: * this is the maximum ramp time value which can be passed to SetGain(). sl@0: * @param aMaxRampTime On return contains the maximum ramp time. sl@0: * The value is platform and stream setup dependent but is always greater than or equal to zero. sl@0: * @return An error code. KErrNone on success, otherwise one of the system wide error codes. sl@0: */ sl@0: virtual TInt GetMaxRampTime(TTimeIntervalMicroSeconds& aMaxRampTime) const= 0; sl@0: sl@0: /** sl@0: * Requests changes to the audio gain on a channel-by-channel basis. sl@0: sl@0: * Note that the values for each channel are independent of each other. sl@0: * The call is asynchronous in nature, resulting in a GainChanged() sl@0: * callback, and the request is only applied following a successful sl@0: * Commit() cycle. sl@0: * The callback signals the receipt of the SetGain() call from the sl@0: * underlying adaptation, and not (say) the completion of a ramp operation. sl@0: * The actual gains will only change once the associated Audio Stream becomes EActive. sl@0: * If the associated Audio Stream is already EActive sl@0: * then the change will start immediately following the next successful Commit() cycle. sl@0: * MMRC may choose to modify or ignore the requested gains. sl@0: sl@0: * @param aChannels Contains the channels for which the gain should be set and the gain value for those channels. sl@0: * @param aRampOperation How aRampDuration is to be interpreted.(see below) sl@0: * @param aRampDuration Duration in microseconds. sl@0: * @return KErrNone if initially successful. sl@0: * KErrNotSupported if the SetGain() call referred to non-existent channels. sl@0: * KErrArgument if aGain of less than 0 or larger than max gain, the same channel is specified multiple times, sl@0: * or aRampDuration is less than 0 or greater than max ramp duration. sl@0: * KErrA3fUnsupportedRamp if the ramp operation requested is not supported, or the Uid value supplies is unknown. sl@0: * Other system-wide error codes are also possible. sl@0: * These errors could instead by returned as part of the subsequent GainChanged() callback – depending on the a3f adaptation. sl@0: * Also note: the requested parameters are specific to the associated stream. sl@0: * If more than one stream is concurrently active to the same device, sl@0: * 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. sl@0: */ sl@0: virtual TInt SetGain(RArray& aChannels, TUid aRampOperation, const TTimeIntervalMicroSeconds& aRampDuration)=0; sl@0: sl@0: /** sl@0: * Sets the audio channel gain. sl@0: * sl@0: * By default all channels are set to use same gain value. Note that the sl@0: * values for each channel are independent of each other, meaning that sl@0: * they only control the gain level on which the particular channel is sl@0: * being used and there is no limitation requiring the sum of all channels to be 100. sl@0: * sl@0: * The gain values will be applied once the associated stream is active. sl@0: * if the stream is active while this function is called, then the values sl@0: * are applied immediately. sl@0: * sl@0: * @param aChannels Contains the channels for which the gain should be set and the gain value for those channels. sl@0: * @return An error code. KErrNone on success. sl@0: * KErrNotSupported if gain for unsupported channels is tried to be set. sl@0: * KErrArgument if a value of less than 0 or larger than max gain is tried to be set as gain. sl@0: * Other system wide error codes are also possible. sl@0: */ sl@0: virtual TInt SetGain(RArray& aChannels)=0; sl@0: sl@0: /** sl@0: * Returns channel specific gain settings. sl@0: * sl@0: * @param aChannels On return contains current gain settings for each audio channel. sl@0: * @return An error code. KErrNone on success. sl@0: * KErrArgument if the array passed in as a parameter is not empty. sl@0: * KErrOutOfMemory in case of memory exhaustion. sl@0: * Other system wide error codes are also possible. sl@0: */ sl@0: virtual TInt GetGain(RArray& aChannels) const= 0; sl@0: sl@0: /** sl@0: * Registers an observer for receiving callbacks. sl@0: * sl@0: * @param aObserver a reference to the observer to register. sl@0: * @return An error code. KErrNone on success, otherwise one of the system wide error codes. sl@0: */ sl@0: virtual TInt RegisterAudioGainControlObserver(MAudioGainControlObserver& aObserver)=0; sl@0: sl@0: /** sl@0: * Unregisters an observer. sl@0: * sl@0: * @param aObserver a reference to observer to unregister. sl@0: */ sl@0: virtual void UnregisterAudioGainControlObserver(MAudioGainControlObserver& aObserver)=0; sl@0: sl@0: }; sl@0: sl@0: #endif // MAUDIOGAINCONTROL_H