Update contrib.
1 // Copyright (c) 2003-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.
18 #ifndef SWAUDIOINPUT_H
19 #define SWAUDIOINPUT_H
22 #include <d32soundsc.h>
26 //- give sample rate and buffer size
27 class TAudioInputParams
30 IMPORT_C TAudioInputParams();
33 // The sample rate of the data past to the client. Ideally, but not
34 // necessarily that used on the device
36 // Number of channels to use. 1 = mono. 2 = (interleaved) stereo.
37 TInt iNominalBufferSize;
38 // "Full buffers" are to be of this size. (Only the penultimate can be shorter)
40 // Gain to use on start.
43 // Observer class for MAudioInput
44 class MAudioInputObserver
47 virtual void InputBufferAvailable(const TDesC8& aBuffer)=0;
48 // A buffer of data is available. Assume single buffering
50 virtual void InputFinished()=0;
51 // called following Pause() to say no more data left
53 virtual void InputError(TInt aError)=0;
54 // called on fatal(ish) error. Client should call Stop() and/or Close()
57 // Interface to SwWrapper AudioInput
61 IMPORT_C static MAudioInput* CreateL(MAudioInputObserver& aObserver);
64 virtual void Release()=0;
67 virtual TInt Initialize(const TAudioInputParams& aParams)=0;
68 // Initialize with given properties. synchronous call.
70 virtual void Close()=0;
71 // undo of Initialize() - return to created state. Implied Stop() if required.
73 virtual TInt Start()=0;
74 // Start to record and supply buffers. Only valid if initialized
75 // subsequently BufferToEmpty() will be called
77 virtual void BufferAck()=0;
78 // The buffer supplied by InputBufferAvailable has been read.
79 // Client must have stopped reading from the buffer
81 virtual TInt Pause()=0;
82 // pause (temporarily stop) recording. When all buffers have been passed
83 // InputFinished() is called.
85 virtual TInt Resume()=0;
86 // resume from paused mode. If InputFinished() has not been sent
87 // already it won't be
89 virtual TInt Flush()=0;
90 // throw away any partially recorded buffers than have not been
91 // received. Implied BufferAck(). Only legal when paused
93 virtual void Stop()=0;
94 // immediate stop, but does not close. Akin to Cancel() if we are running.
96 virtual TAny* Interface(TUid aInterfaceUid)=0;
97 // for standard extension pattern
100 // Parameter access. Do as CI since API not so clear
101 const TUid KUidAIParamInterface = {0x10287080};
102 class MAIParamInterface
105 virtual TInt SetGain(TInt aGain)=0;
108 virtual TInt GetBufferSizes(TInt& aMinSize, TInt& aMaxSize)=0;
109 // min and max buffer size supported (or at least recommended)
111 virtual TInt GetSupportedSampleRates(RArray<TInt>& aSupportedSampleRates)=0;
114 #endif // SWAUDIOINPUT_H