os/mm/devsound/devsoundrefplugin/src/swcodecwrapper/mmfSwCodecRecordDataPath.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __MMFSWCODECRECORDDATAPATH_H__
    17 #define __MMFSWCODECRECORDDATAPATH_H__
    18 
    19 #include "mmfSwCodecDataPath.h"
    20 #include <mmf/server/mmfswcodecwrapper.h>
    21 #include "mmfswaudioinput.h"
    22 
    23 class CMMFSwCodecRecordDataPath; //fwd ref
    24 class MSetVbrFlagCustomInterface;	// fwd ref
    25 
    26 /**
    27  *  Derived class for record datapath internal to the Sw codec wrapper
    28  *  @internalComponent
    29  */
    30 class CMMFSwCodecRecordDataPath : public CMMFSwCodecDataPath,
    31 								  public MSetVbrFlagCustomInterface,
    32 								  public MAudioInputObserver,
    33 								  public MSwSetParamInterface,
    34 								  public MSwInfoInterface
    35 	{
    36 	enum TRecordState
    37 	    {
    38 	    ERecordStateCreated,                       // note order here is important - see State(), RecordOrPause() etc
    39         ERecordStateFailed,
    40 	    ERecordStateRecording,
    41         ERecordStateSendingBuffer,
    42         ERecordStateSendingPartialBuffer,
    43         ERecordStateEmptiedPartialBuffer,
    44         ERecordStateRecordingPaused,
    45         ERecordStateSendingBufferPaused,
    46         ERecordStateSendingPartialBufferPaused,
    47         ERecordStateEmptiedPartialBufferPaused,
    48 	    };
    49 public:
    50 	static CMMFSwCodecRecordDataPath* NewL();
    51 	virtual ~CMMFSwCodecRecordDataPath();
    52 
    53 	//From CMMFSwCodecDataPath
    54 	TInt SetObserver(MMMFHwDeviceObserver &aHwObserver);
    55 	TInt AddCodec(CMMFSwCodec& aCodec);
    56 	TInt Start(); //record
    57 	void Stop();
    58 	void Pause();
    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
    67 	void SetVbrFlag();
    68 	//From MAudioInputObserver
    69 	void InputBufferAvailable(const TDesC8& aBuffer);
    70 	void InputFinished();
    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);
    79 
    80 private:
    81 	CMMFSwCodecRecordDataPath();
    82 	void ConstructL();
    83 	void ProcessBufferL(TBool aLastBuffer);
    84 	TInt EmptyBufferL();
    85 
    86 	TBool RecordOrPause() const;
    87 	TBool IsPaused() const;
    88 
    89 	void RequestCallback();
    90 	TInt DoCallback();
    91 	static TInt Callback(TAny* aPtr);
    92 
    93 	static const TRecordState KResumePauseTable[];
    94 
    95 private:
    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;
   104 	TInt  iSampleRate;
   105 	TInt  iNumChannels;
   106 	TInt  iGain;
   107 	TUint iSinkBufferSize;
   108 	TUint iAudioInputBufferSize;
   109 	TUint iRecordedBytesCount;
   110 	TBool iVbrFlag;
   111 	TRecordState iState;
   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.
   114 	};
   115 
   116 #endif
   117