Update contrib.
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.
27 #ifndef MAUDIODATACONSUMER_H
28 #define MAUDIODATACONSUMER_H
30 #include <a3f/a3fbase.h>
36 * An interface to a set of callback functions that a buffer sink client must implement.
38 class MMMFAudioDataConsumer
42 * Provides a buffer with audio data to the client.
44 * After reading the data from the buffer, the client must call MBufferSink::BufferEmptied() passing the buffer as a parameter.
45 * @param aSink a pointer to the sink providing the buffer.
46 * @param aBuffer a pointer to the buffer to empty.
48 virtual void BufferToBeEmptied(MMMFBufferSink* aSink, CMMFBuffer* aBuffer)=0;
52 * Indicates that any outstanding buffer requests are to be cancelled, so that control of those buffers returns to the framework.
53 * The client must call MMMFBufferSink::BuffersDiscarded() to acknowledge that this has taken place.
54 * @param aSource the source whose previous buffer requests should be ignored.
56 virtual void DiscardBuffers(MMMFBufferSink* aSink)=0;
59 #endif // MAUDIODATACONSUMER_H