Update contrib.
1 // Copyright (c) 2006-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.
25 #ifndef MAUDIOPROCESSINGUNIT_H
26 #define MAUDIOPROCESSINGUNIT_H
30 #include <mmf/common/mmfcontroller.h>
31 #include <a3f/a3fbase.h>
33 class MAudioProcessingUnitObserver;
36 * A generic interface for audio processing units.
38 class MAudioProcessingUnit
43 * Fetches the identifier of the context in which this processing unit exists.
45 * @return TUid context instance id.
47 virtual TAudioContextId ContextId() const = 0;
51 * Fetches the specified interface to this processing unit.
52 * The interface must not be deleted by the client.
53 * The processing unit must be removed once from the context using
54 * any of the retrieved processing unit interfaces.
55 * @param aTypeId the type of the interface
57 virtual TAny* Interface(TUid aType)=0;
60 * Registers a processing unit observer.
62 * The observer must be unregistered before the processing unit is removed from the context.
64 * @see MAudioProcessingUnitObserver for further inforamtion about the observer usage.
65 * @param aObserver a reference to the observer to register
66 * @return an error code. KErrNone if successful.
67 * KErrNotSupported the processing unit does not provide support for this type of observation.
68 * Other system wide error codes are also possible.
70 virtual TInt RegisterProcessingUnitObserver(MAudioProcessingUnitObserver& aObserver)=0;
73 * Unregisters audio processing unit observer.
75 * @see RegisterProcessingUnitObserver for further information.
76 * @param aObserver a reference to the processing unit observer to unregister.
77 * @return an error code. KErrNone if successful.
79 virtual void UnregisterProcessingUnitObserver(MAudioProcessingUnitObserver& aObserver)=0;
82 * Returns the component instance id.
84 * @return TUid component instance id.
86 virtual TAudioComponentId InstanceId() const = 0;
89 * Returns if the component is the same type of the given feature Uid.
90 * @param aTypeId a feature Uid to compare with.
92 virtual TBool IsTypeOf(TUid aTypeId) const = 0;
96 #endif // MAUDIOPROCESSINGUNIT_H