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.
27 #include <a3f/a3fbase.h>
28 #include <a3f/maudiodataconsumer.h>
31 class MMMFAudioDataConsumer;
34 * Buffer sink is used for receiving the audio data in buffers outside the audio process.
36 * The type of the actual 'physical' sink can be for example a file or a socket or the
37 * data could also be simple analysed and then discarded. Nevertheless, the client
38 * (the MAudioDataConsumer) is responsible for writing the data to its final sink
39 * while reading it from the buffers received as a parameter with the callbacks in
40 * the MAudioDataConsumer interface.
46 * Initializes the sink for using aConsumer as a data consumer.
48 * The sink must be initialized before it is attahced to a stream.
50 * @param aConsumer a reference to the data consumer which will be responsible
51 * for reading the audio data from the buffers provided by this sink.
52 * @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
54 virtual TInt SetDataConsumer(MMMFAudioDataConsumer& aConsumer)=0;
57 * Indicates that the audio data has been read from a buffer received from this buffer sink.
59 * @param aBuffer the buffer that has been consumed.
60 * @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
62 virtual TInt BufferEmptied(CMMFBuffer* aBuffer)=0;
65 * Called by the client to acknowledgement the processing of DiscardBuffers() to indicate that
66 * control of any buffer previously passed to the client.
67 * (by BufferToBeEmptied()) returns to the framework proper.
69 * @return an error code. KErrNone on success, otherwise one of the system wide error codes.
71 virtual TInt BuffersDiscarded()=0;
74 #endif // MBUFFERSINK_H