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 MAUDIODATASUPPLIER_H
28 #define MAUDIODATASUPPLIER_H
30 #include <a3f/a3fbase.h>
32 class MMMFBufferSource;
36 * An interface to a set of callback functions that a buffer source client must implement.
38 class MMMFAudioDataSupplier
42 * Request a buffer to be filled with audio data.
44 * After filling the buufer, the client must call MBufferSource::BufferFilled() passing the filled buffer as a parameter.
46 * @param aSource a pointer to the source requesting the buffer.
47 * @param aBuffer a pointer to the buffer to fill.
49 virtual void BufferToBeFilled(MMMFBufferSource* aSource, CMMFBuffer* aBuffer)=0;
52 * Indicates that all buffers originating from this source have been removed from the audio path.
53 * Also, all pending buffers previously requested by this source have become invalid and must not be used.
55 * @param aSource the source whose previous buffer requests should be ignored.
57 virtual void DiscardBuffers(MMMFBufferSource* aSource)=0;
60 #endif // MAUDIODATASUPPLIER_H