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