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