os/mm/devsound/devsoundrefplugin/src/plugin/audio/MMFpcm16ToPcmU8HwDevice.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 "MMFpcm16ToPcmU8HwDevice.h"
    17 
    18 /**
    19  *
    20  *	Returns the created hw device for signed pcm16 to unsigned pcm8 audio.
    21  *
    22  *	@return	"CMMFPcm16ToPcmU8HwDevice"
    23  *
    24  */
    25 CMMFPcm16ToPcmU8HwDevice* CMMFPcm16ToPcmU8HwDevice::NewL()
    26 	{
    27     CMMFPcm16ToPcmU8HwDevice* self = new (ELeave) CMMFPcm16ToPcmU8HwDevice();
    28 	CleanupStack::PushL(self);
    29 	self->ConstructL();
    30 	CleanupStack::Pop(self);
    31 	return self;
    32 	}
    33 
    34 /**
    35  *
    36  *	Second phase constructor.
    37  *
    38  */
    39 void CMMFPcm16ToPcmU8HwDevice::ConstructL()
    40 	{
    41     iCodec = new (ELeave) CMMFPcm16ToPcmU8Codec();
    42 	}
    43 
    44 /**
    45 *
    46 * ~CMMFPcm16ToPcmU8HwDevice
    47 */
    48 CMMFPcm16ToPcmU8HwDevice::~CMMFPcm16ToPcmU8HwDevice()
    49 	{
    50 	//The codec is deleted in the base class CMMFSwCodecWrapper
    51 	}
    52 
    53 /**
    54 *
    55 * Codec
    56 * @return 'CMMFSwCodec&'
    57 *
    58 */
    59 CMMFSwCodec& CMMFPcm16ToPcmU8HwDevice::Codec()
    60 	{
    61 	return *iCodec;
    62 	}
    63 
    64 /**
    65 *
    66 * ProcessL
    67 * @param aSrc 
    68 * @param aDst
    69 * @return 'CMMFSwCodec::TCodecProcessResult'
    70 *
    71 */
    72 CMMFSwCodec::TCodecProcessResult CMMFPcm16ToPcmU8Codec::ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest)
    73 	{
    74 	TCodecProcessResult result;
    75 	result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
    76 	
    77 	//convert from generic CMMFBuffer to CMMFDataBuffer
    78 	const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSource);
    79 	CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDest);
    80 	
    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     
    91 	TInt srcUse = src->Data().Length();
    92 	
    93 	TInt noSamples = srcUse /2;
    94 	iAudioS16ToU8Pcm.Convert(pSrc, pDst, noSamples );
    95 	
    96 	result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
    97 	result.iSrcBytesProcessed  = srcUse;
    98 	result.iDstBytesAdded      = srcUse / 2;
    99 	
   100 	dst->Data().SetLength(result.iDstBytesAdded);
   101 	
   102 	//[ post conditions
   103     // srcbytes/2 == destbytes added
   104 	// pos src == 0
   105 	// pos dest == 0 ]
   106 	__ASSERT_DEBUG( (src->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
   107 	__ASSERT_DEBUG( (dst->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
   108 	__ASSERT_DEBUG( src->Data().Length()/2 == dst->Data().Length(), TMmfAudioCodecPanicsNameSpace::Panic( 	TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
   109 	
   110 	return result;
   111 	}
   112 
   113 /**
   114 *
   115 * Preconditions
   116 * This methos tests the preconditions of the ProcessL method
   117 * @return TBool ETrue for sucess and EFalse for failure of the preconditions
   118 *
   119 **/
   120 TBool CMMFPcm16ToPcmU8Codec::CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer )
   121 	{
   122 	TBool result = EFalse;
   123 	
   124 	if(! aSrcBuffer )
   125 		{
   126 		return result;
   127 		}
   128 	
   129 	if( ! aDestBuffer )
   130 		{
   131 		return result;
   132 		}
   133 	
   134 	// Check position of src and dest are 0
   135 	if( aSrcBuffer->Position() )
   136 		{
   137 		return result;
   138 		}
   139 	
   140 	// Check position of src and dest are 0
   141 	if( aDestBuffer->Position() )
   142 		{
   143 		return result;
   144 		}
   145 	
   146 	// check there are sufficient bytes in the output to consume the input
   147 	if( aSrcBuffer->Data().Length()/2 > aDestBuffer->Data().MaxLength() )
   148 		{
   149 		return result;
   150 		}
   151 	
   152 	result = ETrue;  // preconditions have been satisfied
   153 	
   154 	return result;
   155 	}