sl@0
|
1 |
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// mmfswaudioinputpriv.h
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef SWAUDIOINPUTPRIV_H
|
sl@0
|
19 |
#define SWAUDIOINPUTPRIV_H
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32def.h>
|
sl@0
|
22 |
#include "mmfswaudioinput.h"
|
sl@0
|
23 |
#include <d32soundsc.h>
|
sl@0
|
24 |
#include <e32base.h>
|
sl@0
|
25 |
#include <e32std.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
#define KNumRecorders (2) // 2 for double buffering, 4 quadruple etc
|
sl@0
|
28 |
|
sl@0
|
29 |
enum TPanicCodes
|
sl@0
|
30 |
{
|
sl@0
|
31 |
KPanicBadTotalQueueLength=1, // once constructed, total queue length should be KNumRecorders
|
sl@0
|
32 |
KPanicBadTotalQueueLength2, // during construction or delation, total queue length should be <= KNumRecorders
|
sl@0
|
33 |
KPanicBadBusyQueueLength, // Busy queue should never exceed length of 1
|
sl@0
|
34 |
EPanicBusyRecorderNotActive, // If in the busy queue, should be active
|
sl@0
|
35 |
EPanicNonBusyRecorderActive, // opposite
|
sl@0
|
36 |
};
|
sl@0
|
37 |
|
sl@0
|
38 |
//Total Number of sample rates
|
sl@0
|
39 |
class CChannelAndSampleRateConverter; // forward dec
|
sl@0
|
40 |
|
sl@0
|
41 |
class TRecordSharedChunkBufConfig : public TSharedChunkBufConfigBase
|
sl@0
|
42 |
{
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
TInt iBufferOffsetList[3];
|
sl@0
|
45 |
};
|
sl@0
|
46 |
|
sl@0
|
47 |
NONSHARABLE_CLASS(CAudioInput) : public CBase,
|
sl@0
|
48 |
public MAudioInput,
|
sl@0
|
49 |
public MAIParamInterface
|
sl@0
|
50 |
{
|
sl@0
|
51 |
NONSHARABLE_CLASS( CRecorder ) : public CActive
|
sl@0
|
52 |
{
|
sl@0
|
53 |
public:
|
sl@0
|
54 |
CRecorder(CAudioInput& aParent, TInt aIndex);
|
sl@0
|
55 |
~CRecorder();
|
sl@0
|
56 |
void Cancel();
|
sl@0
|
57 |
|
sl@0
|
58 |
void RecordData();
|
sl@0
|
59 |
TInt Index() const;
|
sl@0
|
60 |
void ReleaseBuffer(TBool aDoAnyway=EFalse);
|
sl@0
|
61 |
TBool IsBusy() const;
|
sl@0
|
62 |
TBool BufferHeld() const;
|
sl@0
|
63 |
TInt Length() const;
|
sl@0
|
64 |
TInt Offset() const;
|
sl@0
|
65 |
TInt StatusOrOffset() const;
|
sl@0
|
66 |
|
sl@0
|
67 |
TSglQueLink iLink; // used to form queues. Treat as private.
|
sl@0
|
68 |
|
sl@0
|
69 |
// from CActive
|
sl@0
|
70 |
void RunL();
|
sl@0
|
71 |
void DoCancel();
|
sl@0
|
72 |
private:
|
sl@0
|
73 |
CAudioInput& iParent;
|
sl@0
|
74 |
const TInt iIndex;
|
sl@0
|
75 |
TInt iLength;
|
sl@0
|
76 |
TBool iBufferHeld;
|
sl@0
|
77 |
};
|
sl@0
|
78 |
|
sl@0
|
79 |
private:
|
sl@0
|
80 |
class TFormatData
|
sl@0
|
81 |
{
|
sl@0
|
82 |
public:
|
sl@0
|
83 |
inline TFormatData():
|
sl@0
|
84 |
iSampleRate(8000), iRequestedChannels(1) // default
|
sl@0
|
85 |
{
|
sl@0
|
86 |
}
|
sl@0
|
87 |
public:
|
sl@0
|
88 |
TInt iSampleRate;
|
sl@0
|
89 |
TInt iActualRate;
|
sl@0
|
90 |
TInt iRequestedChannels;
|
sl@0
|
91 |
TInt iActualChannels;
|
sl@0
|
92 |
};
|
sl@0
|
93 |
|
sl@0
|
94 |
public:
|
sl@0
|
95 |
static CAudioInput* NewL(MAudioInputObserver& aObserver);
|
sl@0
|
96 |
~CAudioInput();
|
sl@0
|
97 |
|
sl@0
|
98 |
// from MAudioInput
|
sl@0
|
99 |
void Release();
|
sl@0
|
100 |
TInt Initialize(const TAudioInputParams& aParams);
|
sl@0
|
101 |
void Close();
|
sl@0
|
102 |
TInt Start();
|
sl@0
|
103 |
void BufferAck();
|
sl@0
|
104 |
TInt Pause();
|
sl@0
|
105 |
TInt Resume();
|
sl@0
|
106 |
TInt Flush();
|
sl@0
|
107 |
void Stop();
|
sl@0
|
108 |
TAny* Interface(TUid aInterfaceUid);
|
sl@0
|
109 |
|
sl@0
|
110 |
// from MAIParamInterface
|
sl@0
|
111 |
TInt SetGain(TInt aGain);
|
sl@0
|
112 |
TInt GetBufferSizes(TInt& aMinSize, TInt& aMaxSize);
|
sl@0
|
113 |
TInt GetSupportedSampleRates(RArray<TInt>& aSupportedSampleRates);
|
sl@0
|
114 |
|
sl@0
|
115 |
RSoundSc& RecordSoundDevice();
|
sl@0
|
116 |
void BufferArrives(CRecorder* aRecorder);
|
sl@0
|
117 |
void BufferError(CRecorder* aRecorder, TInt aError);
|
sl@0
|
118 |
TInt SetFormat(const TAudioInputParams& aFormat);
|
sl@0
|
119 |
TInt NegotiateFormat(const TAudioInputParams& aFormat, TFormatData &aFormatData);
|
sl@0
|
120 |
TInt GetSupportedSampleRates(RArray<TInt>& aSupportedSampleRates, RSoundSc& aSoundDevice);
|
sl@0
|
121 |
|
sl@0
|
122 |
private:
|
sl@0
|
123 |
CAudioInput(MAudioInputObserver& aObserver);
|
sl@0
|
124 |
void ConstructL();
|
sl@0
|
125 |
void Cancel();
|
sl@0
|
126 |
|
sl@0
|
127 |
static TInt Callback(TAny* aPtr);
|
sl@0
|
128 |
void AsyncCallbackL();
|
sl@0
|
129 |
void RequestCallback();
|
sl@0
|
130 |
|
sl@0
|
131 |
void CancelRecorders();
|
sl@0
|
132 |
void CancelPendingRecorders();
|
sl@0
|
133 |
void CancelBusyRecorder();
|
sl@0
|
134 |
void InternalStop();
|
sl@0
|
135 |
void InternalFlush();
|
sl@0
|
136 |
void RecordAllIdle();
|
sl@0
|
137 |
|
sl@0
|
138 |
void UseBuffer(CRecorder* aRecorder);
|
sl@0
|
139 |
void HandleBufferAck();
|
sl@0
|
140 |
|
sl@0
|
141 |
void CheckFullInvariant();
|
sl@0
|
142 |
void CheckInvariant(TBool aKnownConstructed=ETrue);
|
sl@0
|
143 |
|
sl@0
|
144 |
#ifdef _DEBUG
|
sl@0
|
145 |
void CheckActiveRecorders();
|
sl@0
|
146 |
void CheckActiveRecorders(TSglQue<CRecorder>& aQueue, TBool aExpected, TInt aPanicCode);
|
sl@0
|
147 |
#endif
|
sl@0
|
148 |
|
sl@0
|
149 |
static TInt QLength(TSglQue<CRecorder>& aQueue);
|
sl@0
|
150 |
CRecorder* QPop(TSglQue<CRecorder>& aQueue);
|
sl@0
|
151 |
TBool QPop(CRecorder*& aRecorder, TSglQue<CRecorder>& aQueue);
|
sl@0
|
152 |
|
sl@0
|
153 |
inline TInt BufferLength() const { return iBufferLength; } // TODO required?
|
sl@0
|
154 |
|
sl@0
|
155 |
private:
|
sl@0
|
156 |
MAudioInputObserver& iObserver;
|
sl@0
|
157 |
|
sl@0
|
158 |
enum TState
|
sl@0
|
159 |
{
|
sl@0
|
160 |
EStateCreated2,
|
sl@0
|
161 |
EStateInitialized2,
|
sl@0
|
162 |
EStateRecordWait2,
|
sl@0
|
163 |
EStateRecordWaitAck2,
|
sl@0
|
164 |
};
|
sl@0
|
165 |
|
sl@0
|
166 |
enum TRunningState // when in RecordWait2 or RecordWaitAck2
|
sl@0
|
167 |
{
|
sl@0
|
168 |
ERStateRunning, // recording
|
sl@0
|
169 |
ERStatePaused, // paused state
|
sl@0
|
170 |
ERStateFinishing, // look to do InputFinished() on next tick
|
sl@0
|
171 |
ERStateFinished, // InputFinished() sent
|
sl@0
|
172 |
ERStateFailed, // InputError() sent
|
sl@0
|
173 |
};
|
sl@0
|
174 |
|
sl@0
|
175 |
TState iState;
|
sl@0
|
176 |
TRunningState iRState;
|
sl@0
|
177 |
TRecordSharedChunkBufConfig iRecordBufferConfig;
|
sl@0
|
178 |
RSoundSc iRecordSoundDevice;
|
sl@0
|
179 |
RChunk iChunk;
|
sl@0
|
180 |
CRecorder* iRecorders[KNumRecorders];
|
sl@0
|
181 |
CAsyncCallBack* iAsyncCallBack;
|
sl@0
|
182 |
TInt iBufferLength; // this is the length of buffers we request
|
sl@0
|
183 |
CChannelAndSampleRateConverter* iConverter;
|
sl@0
|
184 |
TPtrC8 iBufPtr; // this is usually the descriptor sent to the observer
|
sl@0
|
185 |
RBuf8 iConvBuff; // extra buffer from when we use a converter
|
sl@0
|
186 |
|
sl@0
|
187 |
TSglQue<CRecorder> iIdleQueue; // just sitting there
|
sl@0
|
188 |
TSglQue<CRecorder> iRecordingQueue; // record operation outstanding
|
sl@0
|
189 |
TSglQue<CRecorder> iPendingQueue; // buffer has been recorded, waiting to be processed
|
sl@0
|
190 |
TSglQue<CRecorder> iBusyQueue; // mid InputAvailable()/BufferAck() cycle. Length <= 1
|
sl@0
|
191 |
};
|
sl@0
|
192 |
|
sl@0
|
193 |
inline TBool CAudioInput::QPop(CRecorder*& aRecorder, TSglQue<CRecorder>& aQueue)
|
sl@0
|
194 |
// overload of QPop(), since "while (recorder = QPop(...))" etc gives warnings
|
sl@0
|
195 |
// This allows "while (QPop(recorder, ...))" instead
|
sl@0
|
196 |
{
|
sl@0
|
197 |
CRecorder* recorder = QPop(aQueue);
|
sl@0
|
198 |
if (recorder)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
aRecorder = recorder;
|
sl@0
|
201 |
return ETrue;
|
sl@0
|
202 |
}
|
sl@0
|
203 |
return EFalse;
|
sl@0
|
204 |
}
|
sl@0
|
205 |
|
sl@0
|
206 |
#endif // SWAUDIOINPUTPRIV_H
|
sl@0
|
207 |
|