First public contribution.
2 * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
28 #ifndef MAUDIOPROCESSINGUNITOBSERVER_H__
29 #define MAUDIOPROCESSINGUNITOBSERVER_H__
33 #include <a3f/a3fbase.h>
35 class MAudioProcessingUnit;
38 * An interface to a set of audio processing unit callback functions.
40 * this serves as the method of communication between the client and the audio processing unit.
42 * The class is a mixin and is intended to be inherited by the client class that is
43 * interested in observing the audio processing unit operation. The functions
44 * encapsulated by this class are called when specific events occur while
47 * this interface is mainly usable for advanced audio clients, that are interested in detailed
48 * operation of the processing chain. Most audio clients should be fine with only observing the audio stream.
51 class MAudioProcessingUnitObserver
55 * Handles processing unit error event.
57 * @param aInstance A pointer to the processing unit instance.
58 * @param aError. Propagated error.
60 virtual void ProcessingUnitError(MAudioProcessingUnit* aInstance, TInt aError)=0;
63 #endif // MAUDIOPROCESSINGUNITOBSERVER_H__