Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef MDEVSOUNDADAPTATIONINFOOBSERVER_H
17 #define MDEVSOUNDADAPTATIONINFOOBSERVER_H
26 #include <a3f/a3fbase.h>
30 * An interface to a set of A3FDevSoundAdaptationInfo callback functions.
32 * This serves as the method of communication between the A3FDevSoundAdaptationInfo
36 class MA3FDevSoundAdaptationInfoObserver
40 * Notifies the observer of the max gain supported
42 * @param aCodecType the UID passed to the original RequestMaxGain() call
43 * @param aError an standard symbian error code. KErrNone if succesful
44 * @param aResult the supported MaxGain/MaxVolume value, if aError==KErrNone
46 virtual void RequestMaxGainComplete (TUid aCodecType, TInt aError, TInt aResult)=0;
50 * Notifies the observer that the max ramp time supported by the gain
51 * control has changed.
53 * @param aCodecType the UID passed to the original RequestSupportedForamts() call
54 * @param aError an standard symbian error code. KErrNone if succesful
56 virtual void RequestSupportedFormatsComplete(TUid aCodecType, TInt aError)=0;
60 #endif //MDEVSOUNDADAPTATIONINFOOBSERVER_H