os/mm/devsound/devsoundrefplugin/src/plugin/audio/MmfMuLawToPcm16hwDevice.cpp
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 #include "MMFAudioCodec.h"
    17 #include <mmf/common/mmfpaniccodes.h>
    18 #include "MmfMuLawToPcm16hwDevice.h"
    19 
    20 /**
    21 *
    22 * NewL
    23 *
    24 */
    25 CMMFMulawToPcm16CodecHwDevice* CMMFMulawToPcm16CodecHwDevice::NewL()
    26 	{
    27 	CMMFMulawToPcm16CodecHwDevice* self=new(ELeave) CMMFMulawToPcm16CodecHwDevice();
    28 	CleanupStack::PushL(self);
    29 	self->ConstructL();
    30 	CleanupStack::Pop(self);
    31 	return self;
    32 	}
    33 
    34 /**
    35 *
    36 * ~CMMFMulawPcm16HwDevice
    37 *
    38 */
    39 CMMFMulawToPcm16CodecHwDevice::~CMMFMulawToPcm16CodecHwDevice()
    40 	{
    41 	}
    42 
    43 /**
    44 *
    45 * ConstructL
    46 *
    47 */
    48 void CMMFMulawToPcm16CodecHwDevice::ConstructL()
    49 	{
    50 	iCodec = new (ELeave) CMMFMulawToPcm16Codec();
    51 	}
    52 
    53 /**
    54 *
    55 * Codec
    56 *
    57 */
    58 CMMFSwCodec &CMMFMulawToPcm16CodecHwDevice::Codec()
    59 	{
    60 	return *iCodec;
    61 	}
    62 
    63 /**
    64 *
    65 * ProcessL
    66 * @param aSrc
    67 * @param aDst
    68 * @return TCodecProcessResult
    69 *
    70 */
    71 CMMFSwCodec::TCodecProcessResult CMMFMulawToPcm16Codec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
    72 	{
    73 	CMMFSwCodec::TCodecProcessResult result;
    74 	result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
    75 	
    76 	//convert from generic CMMFBuffer to CMMFDataBuffer
    77 	const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
    78 	CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDst);
    79 	
    80 	//[check preconditions hold ]
    81 	if( !CheckPreconditions( src, dst ))
    82 		{
    83 		//[ precondition violation ]
    84 		User::Leave( KErrArgument );
    85 		}
    86 	
    87 	//we need to cast away CONST even on the source, as the TClass needs a TUint8*
    88 	TUint8* pSrc = CONST_CAST(TUint8*,src->Data().Ptr());
    89 	TUint8* pDst = CONST_CAST(TUint8*,dst->Data().Ptr());
    90 	TInt noSamples = src->Data().Length();
    91 	
    92 	iMulawTo16Pcm.Convert(pSrc, pDst, noSamples );
    93 	
    94 	TUint dstBytesAdded = noSamples*sizeof(TInt16);
    95 	
    96 	result.iCodecProcessStatus  = TCodecProcessResult::EProcessComplete;
    97 	result.iSrcBytesProcessed   = src->Data().Length();
    98 	result.iDstBytesAdded       = dstBytesAdded;
    99 	
   100 	dst->Data().SetLength( dstBytesAdded );
   101 	
   102 	//[ check post conditions ]
   103 	__ASSERT_DEBUG( (src->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
   104 	__ASSERT_DEBUG( (dst->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
   105 	__ASSERT_DEBUG( src->Data().Length() == dst->Data().Length()/2, TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation )); // 2 here signifies sizeof TInt16
   106 	__ASSERT_DEBUG( dst->Data().Length() % 2 == 0, TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation )); // pcm output
   107 	
   108 	return result;
   109 	}
   110 
   111 /**
   112 *
   113 * Preconditions
   114 * This methos tests the preconditions of the ProcessL method
   115 * @return TBool ETrue for sucess and EFalse for failure of the preconditions
   116 *
   117 **/
   118 TBool CMMFMulawToPcm16Codec::CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer )
   119 	{
   120 	TBool result = EFalse;
   121 	
   122 	if(! aSrcBuffer )
   123 		{
   124 		return result;
   125 		}
   126 	
   127 	if( ! aDestBuffer )
   128 		{
   129 		return result;
   130 		}
   131 	
   132 	// Check position of src and dest are 0
   133 	if( aSrcBuffer->Position() )
   134 		{
   135 		return result;
   136 		}
   137 	
   138 	// Check position of src and dest are 0
   139 	if( aDestBuffer->Position() )
   140 		{
   141 		return result;
   142 		}
   143 	
   144 	// check there are sufficient bytes in the output to consume the input
   145 	if( aSrcBuffer->Data().Length() > aDestBuffer->Data().MaxLength()/2 )
   146 		{
   147 		return result;
   148 		}
   149 	
   150 	result = ETrue;  // preconditions have been satisfied
   151 	
   152 	return result;
   153 	}