os/mm/devsound/devsoundrefplugin/src/plugin/audio/Mmfimaadpcmtopcm16hwdevice.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "MMFAudioCodec.h"
    17 #include <mmf/common/mmfpaniccodes.h>
    18 #include "MmfImaAdpcmtopcm16hwdevice.h"
    19 #include <mmf/server/mmfswcodecwrappercustominterfacesuids.hrh>
    20 
    21 /**
    22 *
    23 * NewL
    24 *
    25 */
    26 CMMFImaAdpcmToPcm16CodecHwDevice* CMMFImaAdpcmToPcm16CodecHwDevice::NewL()
    27 	{
    28 	CMMFImaAdpcmToPcm16CodecHwDevice* self=new(ELeave)CMMFImaAdpcmToPcm16CodecHwDevice();
    29 	CleanupStack::PushL(self);
    30 	self->ConstructL();
    31 	CleanupStack::Pop(self);
    32 	return self;
    33 	}
    34 
    35 /**
    36 *
    37 * ConstructL
    38 *
    39 */
    40 void CMMFImaAdpcmToPcm16CodecHwDevice::ConstructL()
    41 	{
    42 	iCodec = new (ELeave) CMMFImaAdpcmToPcm16Codec();
    43 	}
    44 
    45 /**
    46 *
    47 * ~CMMFMulawPcm16HwDevice
    48 *
    49 */
    50 CMMFImaAdpcmToPcm16CodecHwDevice::~CMMFImaAdpcmToPcm16CodecHwDevice()
    51 	{
    52 	}
    53 
    54 /**
    55 *
    56 * Codec
    57 *
    58 */
    59 CMMFSwCodec &CMMFImaAdpcmToPcm16CodecHwDevice::Codec()
    60 	{
    61 	return *iCodec;
    62 	}
    63 
    64 /**
    65 Retrieves a custom interface to the device.
    66 The reference CMMFImaAdpcmToPcm16CodecHwDevice supports one FileBlockLength custom interface,
    67 or else calls two standard (CMMFSwCodecWrapper) custom interfaces,TPlayCustomInterface and TRecordCustomInterface.
    68 
    69 @param	aInterface
    70 		Interface UID, defined with the custom interface.
    71 		aInterface = KUidCustomInterfaceDevSoundFileBlockLength,
    72 		aInterface = KMmfPlayCustomInterface for TPlayCustomInterface,
    73 		aInterface = KMmfRecordCustomInterface for TRecordCustomInterface.
    74 @return A pointer to the interface implementation, The return value must be cast to the
    75 		correct type by the user.
    76 */
    77 TAny* CMMFImaAdpcmToPcm16CodecHwDevice::CustomInterface(TUid aInterfaceId)
    78 	{
    79 	if(aInterfaceId == KUidCustomInterfaceDevSoundFileBlockLength)
    80 		{
    81 		return static_cast<MMMFDevSoundCustomInterfaceFileBlockLength*>(this);
    82 		}
    83 	else
    84 		{
    85 		return CMMFSwCodecWrapper::CustomInterface(aInterfaceId);
    86 		}
    87 	}
    88 
    89 /**
    90 @see CMMFSwCodecWrapper::Start
    91 
    92 this function sets SampleRate and Channels for CMMFImaAdpcmToPcm16Codec
    93 */
    94 TInt CMMFImaAdpcmToPcm16CodecHwDevice::Start(TDeviceFunc aFuncCmd, TDeviceFlow aFlowCmd)
    95 	{
    96 	TInt err = static_cast<CMMFImaAdpcmToPcm16Codec*>(iCodec)->Configure(iChannels, iSampleRate, iBlockAlign);
    97 	if (err == KErrNone)
    98 		{
    99 		err = CMMFSwCodecWrapper::Start(aFuncCmd, aFlowCmd);
   100 		}
   101 
   102 	return err;
   103 	}
   104 
   105 /**
   106 SetFileBlockLength
   107 
   108 This function sets file's block length for CMMFImaAdpcmToPcm16CodecHwDevice
   109 
   110 @param aBlockAlign
   111        The file's block length 
   112 */
   113 void CMMFImaAdpcmToPcm16CodecHwDevice::SetFileBlockLength(TUint aBlockAlign)
   114 	{
   115 	iBlockAlign = aBlockAlign;
   116 	}
   117 
   118 CMMFImaAdpcmToPcm16Codec::CMMFImaAdpcmToPcm16Codec()
   119 	{
   120 	iChannels = 1;
   121 	iSampleRate = 0;
   122 	iBlockAlign = KImaAdpcmBlockAlign;
   123 	iSamplesPerBlock = KImaAdpcmSamplesPerBlock;
   124 	}
   125 /**
   126 *
   127 * ProcessL
   128 * @param aSrc
   129 * @param aDst
   130 * @pre position of buffer aSrc is 0
   131 * @pre position of buffer aDst is 0
   132 * @pre sufficient bytes in output to consume input
   133 * @return TCodecProcessResult
   134 * This function converts IMA ADPCM samples to PCM samples.
   135 *
   136 */
   137 CMMFSwCodec::TCodecProcessResult CMMFImaAdpcmToPcm16Codec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
   138 	{
   139 	CMMFSwCodec::TCodecProcessResult result;
   140 	result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
   141 	
   142 	//convert from generic CMMFBuffer to CMMFDataBuffer
   143 	const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
   144 	CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDst);
   145 	
   146 	if( !CheckPreconditions( src, dst ) )
   147 		{
   148 		//[ precondition(s) violation ]
   149 		User::Leave(KErrArgument);
   150 		}
   151 	
   152 	//calculate how much source is required to fill the destination buffer
   153 	TUint blocksRemaining = src->Data().Length() / iBlockAlign;
   154 	
   155 	//we need to cast away CONST even on the source, as the TClass needs a TUint8*
   156 	TUint8* pSrc = CONST_CAST(TUint8*,src->Data().Ptr());
   157 	TUint8* pDst = CONST_CAST(TUint8*,dst->Data().Ptr());
   158 	
   159 	//[ [process full blocks ]
   160 	TUint dstBytesAdded = 0;
   161 	for( TUint count = 0; count < blocksRemaining; count++ )
   162 		{
   163 		iImaAdpcmTo16Pcm.Convert(pSrc, pDst, iSamplesPerBlock);
   164 		pSrc += iBlockAlign;
   165 		pDst += (iSamplesPerBlock * sizeof(TInt16));
   166 		dstBytesAdded += (iSamplesPerBlock * sizeof(TInt16));	
   167 		}
   168 	
   169 	result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;	
   170 	result.iSrcBytesProcessed = blocksRemaining * iBlockAlign;
   171 	result.iDstBytesAdded = dstBytesAdded;
   172 	dst->Data().SetLength(result.iDstBytesAdded);
   173 	
   174 	//[ check post conditions
   175 	__ASSERT_DEBUG( (src->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
   176 	__ASSERT_DEBUG( (dst->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
   177 	TInt r1 = src->Data().Length();
   178 	r1 /= iBlockAlign;
   179 	TInt r2 =  dst->Data().Length();
   180 	r2 /=(iSamplesPerBlock * sizeof(TInt16));
   181 	__ASSERT_DEBUG(  r1== r2, TMmfAudioCodecPanicsNameSpace::Panic(TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
   182 	__ASSERT_DEBUG( dst->Data().Length() % 2 == 0, TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation )); // pcm output
   183 	
   184 	return result;
   185 	}
   186 
   187 /**
   188 *
   189 * Preconditions
   190 * This methos tests the preconditions of the ProcessL method
   191 * @return TBool ETrue for sucess and EFalse for failure of the preconditions
   192 *
   193 **/
   194 TBool CMMFImaAdpcmToPcm16Codec::CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer )
   195 	{
   196 	TBool result = EFalse;
   197 	
   198 	if(! aSrcBuffer )
   199 		{
   200 		return result;
   201 		}
   202 	
   203 	if( ! aDestBuffer )
   204 		{
   205 		return result;
   206 		}
   207 	
   208 	// Check position of src and dest are 0
   209 	if( aSrcBuffer->Position() )
   210 		{
   211 		return result;
   212 		}
   213 	
   214 	// Check position of src and dest are 0
   215 	if( aDestBuffer->Position() )
   216 		{
   217 		return result;
   218 		}
   219 	
   220 	// check there are sufficient bytes in the output to consume the input
   221 	const TUint KTempBufferSize = iSamplesPerBlock * 2;
   222     TInt numInputSubFrames  = aSrcBuffer->Data().Length() / iBlockAlign;
   223 	TInt numOutputSubFrames = aDestBuffer->Data().MaxLength() / KTempBufferSize;
   224 
   225 	//[ we need modulo 1010 bytes on all src frames that are not the last
   226 	// frame
   227 	// For the last frame we will code only whole frames and effectively
   228 	// drop any remaining samples]	
   229 	TBool validInputDataLength = (aSrcBuffer->Data().Length() % iBlockAlign == 0) ;
   230     
   231 	if( (numInputSubFrames > numOutputSubFrames) ||  // sufficient space in the output for the input
   232         (aSrcBuffer->Position() > 0 )  ||                   // position must be zero since we can eat all the data
   233 		(aDestBuffer->Position() > 0 ) ||
   234 		(!validInputDataLength))                         //position must be zero
   235 		{
   236 		return result;
   237 		}
   238 	
   239 	result = ETrue;  // preconditions have been satisfied
   240 	
   241 	return result;
   242 	}
   243 
   244 /**
   245 Configure
   246 
   247 This function sets file's block length, channels & sample rate.
   248 
   249 @param aChannels
   250        The file's number of channels
   251 @param aSampleRate
   252        The file's sample rate 
   253 @param aBlockAlign
   254        The file's block length 
   255 */
   256 TInt CMMFImaAdpcmToPcm16Codec::Configure(TUint aChannels, TUint aSampleRate, TUint aBlockAlign)
   257 	{
   258 	iChannels = aChannels;
   259 	iSampleRate = aSampleRate;
   260 	
   261 	if (aBlockAlign < 256)	
   262 		{
   263 		switch (iSampleRate * iChannels)
   264 			{
   265 			case 8000: // fall through, same as 11025
   266 			case 11025:
   267 			case 16000:
   268 				iBlockAlign = 256;
   269 				break;
   270 			case 22050:
   271 				iBlockAlign = 512;
   272 				break;
   273 				
   274 			case 44100:
   275 				iBlockAlign = 1024;
   276 				break;
   277 				
   278 			case 88200:
   279 				iBlockAlign = 2048;
   280 				break;
   281 				
   282 			default:
   283 				return KErrArgument;
   284 			}
   285 		}
   286 	else
   287 		{
   288 		iBlockAlign = aBlockAlign;
   289 		}
   290 	
   291 	const TUint KImaAdpcmBitsPerSample = 4;
   292 	iSamplesPerBlock = (iBlockAlign - 4 * iChannels) * 8 / (KImaAdpcmBitsPerSample * iChannels) + 1;
   293 	
   294 	return KErrNone;
   295 	}
   296 	
   297 
   298 
   299 
   300 
   301