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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __MMFSWCODECRECORDDATAPATH_H__
|
sl@0
|
17 |
#define __MMFSWCODECRECORDDATAPATH_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "mmfSwCodecDataPath.h"
|
sl@0
|
20 |
#include <mmf/server/mmfswcodecwrapper.h>
|
sl@0
|
21 |
#include "mmfswaudioinput.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
class CMMFSwCodecRecordDataPath; //fwd ref
|
sl@0
|
24 |
class MSetVbrFlagCustomInterface; // fwd ref
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
* Derived class for record datapath internal to the Sw codec wrapper
|
sl@0
|
28 |
* @internalComponent
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
class CMMFSwCodecRecordDataPath : public CMMFSwCodecDataPath,
|
sl@0
|
31 |
public MSetVbrFlagCustomInterface,
|
sl@0
|
32 |
public MAudioInputObserver,
|
sl@0
|
33 |
public MSwSetParamInterface,
|
sl@0
|
34 |
public MSwInfoInterface
|
sl@0
|
35 |
{
|
sl@0
|
36 |
enum TRecordState
|
sl@0
|
37 |
{
|
sl@0
|
38 |
ERecordStateCreated, // note order here is important - see State(), RecordOrPause() etc
|
sl@0
|
39 |
ERecordStateFailed,
|
sl@0
|
40 |
ERecordStateRecording,
|
sl@0
|
41 |
ERecordStateSendingBuffer,
|
sl@0
|
42 |
ERecordStateSendingPartialBuffer,
|
sl@0
|
43 |
ERecordStateEmptiedPartialBuffer,
|
sl@0
|
44 |
ERecordStateRecordingPaused,
|
sl@0
|
45 |
ERecordStateSendingBufferPaused,
|
sl@0
|
46 |
ERecordStateSendingPartialBufferPaused,
|
sl@0
|
47 |
ERecordStateEmptiedPartialBufferPaused,
|
sl@0
|
48 |
};
|
sl@0
|
49 |
public:
|
sl@0
|
50 |
static CMMFSwCodecRecordDataPath* NewL();
|
sl@0
|
51 |
virtual ~CMMFSwCodecRecordDataPath();
|
sl@0
|
52 |
|
sl@0
|
53 |
//From CMMFSwCodecDataPath
|
sl@0
|
54 |
TInt SetObserver(MMMFHwDeviceObserver &aHwObserver);
|
sl@0
|
55 |
TInt AddCodec(CMMFSwCodec& aCodec);
|
sl@0
|
56 |
TInt Start(); //record
|
sl@0
|
57 |
void Stop();
|
sl@0
|
58 |
void Pause();
|
sl@0
|
59 |
void BufferFilledL(CMMFDataBuffer& aBuffer);
|
sl@0
|
60 |
void BufferEmptiedL(const CMMFDataBuffer& aBuffer);
|
sl@0
|
61 |
void SoundDeviceException(TInt aError);
|
sl@0
|
62 |
RMdaDevSound& Device();
|
sl@0
|
63 |
TUint RecordedBytesCount();
|
sl@0
|
64 |
TAny* CustomInterface(TUid aInterfaceId);
|
sl@0
|
65 |
TSwCodecDataPathState State() const;
|
sl@0
|
66 |
//From MSetVbrFlagCustomInterface
|
sl@0
|
67 |
void SetVbrFlag();
|
sl@0
|
68 |
//From MAudioInputObserver
|
sl@0
|
69 |
void InputBufferAvailable(const TDesC8& aBuffer);
|
sl@0
|
70 |
void InputFinished();
|
sl@0
|
71 |
void InputError(TInt aError);
|
sl@0
|
72 |
//From MSwSetParamInerface
|
sl@0
|
73 |
TInt SetSampleRate(TInt aSampleRate);
|
sl@0
|
74 |
TInt SetNumChannels(TInt aNumChannels);
|
sl@0
|
75 |
TInt SetGain(TInt aGain);
|
sl@0
|
76 |
TInt GetBufferSizes(TInt& aMinSize, TInt& aMaxSize);
|
sl@0
|
77 |
//From MSwInfoInterface
|
sl@0
|
78 |
TInt GetSupportedSampleRates(RArray<TInt>& aSupportedSampleRates);
|
sl@0
|
79 |
|
sl@0
|
80 |
private:
|
sl@0
|
81 |
CMMFSwCodecRecordDataPath();
|
sl@0
|
82 |
void ConstructL();
|
sl@0
|
83 |
void ProcessBufferL(TBool aLastBuffer);
|
sl@0
|
84 |
TInt EmptyBufferL();
|
sl@0
|
85 |
|
sl@0
|
86 |
TBool RecordOrPause() const;
|
sl@0
|
87 |
TBool IsPaused() const;
|
sl@0
|
88 |
|
sl@0
|
89 |
void RequestCallback();
|
sl@0
|
90 |
TInt DoCallback();
|
sl@0
|
91 |
static TInt Callback(TAny* aPtr);
|
sl@0
|
92 |
|
sl@0
|
93 |
static const TRecordState KResumePauseTable[];
|
sl@0
|
94 |
|
sl@0
|
95 |
private:
|
sl@0
|
96 |
MAudioInput* iAudioInput;
|
sl@0
|
97 |
CMMFDataBuffer* iCodecBuffer;
|
sl@0
|
98 |
const TDesC8* iInputData; // not owned - cache of past data
|
sl@0
|
99 |
TPtr8 iShadowData; // need TPtr8
|
sl@0
|
100 |
TInt iInputOffset; // track how much data we've processed from audio input
|
sl@0
|
101 |
CMMFPtrBuffer* iInputBuffer; // select from iInputData
|
sl@0
|
102 |
CMMFDataBuffer* iSinkBuffer; // not owned - pointer to buffer to send to client
|
sl@0
|
103 |
CAsyncCallBack* iAsyncCallback;
|
sl@0
|
104 |
TInt iSampleRate;
|
sl@0
|
105 |
TInt iNumChannels;
|
sl@0
|
106 |
TInt iGain;
|
sl@0
|
107 |
TUint iSinkBufferSize;
|
sl@0
|
108 |
TUint iAudioInputBufferSize;
|
sl@0
|
109 |
TUint iRecordedBytesCount;
|
sl@0
|
110 |
TBool iVbrFlag;
|
sl@0
|
111 |
TRecordState iState;
|
sl@0
|
112 |
TBool iInputHasFinished; // extension to iState, if we've received InputFinished we don't want to call BufferAck() but signal complete
|
sl@0
|
113 |
RMdaDevSound iDummyDevSound; // TODO - remove when Device() is removed.
|
sl@0
|
114 |
};
|
sl@0
|
115 |
|
sl@0
|
116 |
#endif
|
sl@0
|
117 |
|