1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/sounddevbt/src/Plugin/HwDevice/Audio/MmfBtAlawToPcm16HwDevice.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,156 @@
1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "MmfBtAudioCodec.h"
1.20 +#include <mmfpaniccodes.h>
1.21 +#include "MmfBtALawToPcm16HwDevice.h"
1.22 +#include "../../MmfBtFileDependencyUtil.h"
1.23 +
1.24 +
1.25 +/**
1.26 +*
1.27 +* NewL
1.28 +*
1.29 +*/
1.30 +CMMFAlawToPcm16CodecHwDevice* CMMFAlawToPcm16CodecHwDevice::NewL()
1.31 + {
1.32 + CMMFAlawToPcm16CodecHwDevice* self=new(ELeave) CMMFAlawToPcm16CodecHwDevice();
1.33 + CleanupStack::PushL(self);
1.34 + self->ConstructL();
1.35 + CleanupStack::Pop(self);
1.36 + return self;
1.37 + }
1.38 +
1.39 +/**
1.40 +*
1.41 +* ~CMMFAlawPcm16HwDevice
1.42 +*
1.43 +*/
1.44 +CMMFAlawToPcm16CodecHwDevice::~CMMFAlawToPcm16CodecHwDevice()
1.45 + {
1.46 + }
1.47 +
1.48 +/**
1.49 +*
1.50 +* ConstructL
1.51 +*
1.52 +*/
1.53 +void CMMFAlawToPcm16CodecHwDevice::ConstructL()
1.54 + {
1.55 + iCodec = new (ELeave) CMMFAlawToPcm16Codec();
1.56 + }
1.57 +
1.58 +/**
1.59 +*
1.60 +* Codec
1.61 +*
1.62 +*/
1.63 +CMMFSwCodec &CMMFAlawToPcm16CodecHwDevice::Codec()
1.64 + {
1.65 + return *iCodec;
1.66 + }
1.67 +
1.68 +/**
1.69 +*
1.70 +* ProcessL
1.71 +* @param aSrc
1.72 +* @param aDst
1.73 +* @pre position of buffer aSrc is 0
1.74 +* @pre position of buffer aDst is 0
1.75 +* @pre sufficient bytes in output to consume input
1.76 +* @return TCodecProcessResult
1.77 +*
1.78 +*/
1.79 +CMMFSwCodec::TCodecProcessResult CMMFAlawToPcm16Codec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
1.80 + {
1.81 + CMMFSwCodec::TCodecProcessResult result;
1.82 + result.iCodecProcessStatus = result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
1.83 +
1.84 + //convert from generic CMMFBuffer to CMMFDataBuffer
1.85 + const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
1.86 + CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDst);
1.87 +
1.88 + if( !CheckPreconditions( src, dst ))
1.89 + {
1.90 + //[ precondition violation ]
1.91 + User::Leave( KErrArgument );
1.92 + }
1.93 +
1.94 + //we need to cast away CONST even on the source, as the TClass needs a TUint8*
1.95 + TUint8* pSrc = CONST_CAST(TUint8*,src->Data().Ptr());
1.96 + TUint8* pDst = CONST_CAST(TUint8*,dst->Data().Ptr());
1.97 + TInt noSamples = src->Data().Length();
1.98 + iAlawTo16Pcm.Convert(pSrc, pDst, noSamples );
1.99 +
1.100 + TUint dstBytesAdded = noSamples*sizeof(TInt16);
1.101 +
1.102 + result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
1.103 + result.iSrcBytesProcessed = src->Data().Length();
1.104 + result.iDstBytesAdded = dstBytesAdded;
1.105 +
1.106 + dst->Data().SetLength(dstBytesAdded);
1.107 +
1.108 + //[ check post conditions ]
1.109 + __ASSERT_DEBUG( (src->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
1.110 + __ASSERT_DEBUG( (dst->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
1.111 + __ASSERT_DEBUG( src->Data().Length() == dst->Data().Length()/2, TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation )); // 2 here signifies sizeof TInt16
1.112 + __ASSERT_DEBUG( dst->Data().Length() % 2 == 0, TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation )); // pcm output
1.113 +
1.114 + return result;
1.115 + }
1.116 +
1.117 +/**
1.118 +*
1.119 +* Preconditions
1.120 +* This methos tests the preconditions of the ProcessL method
1.121 +* @return TBool ETrue for sucess and EFalse for failure of the preconditions
1.122 +*
1.123 +**/
1.124 +TBool CMMFAlawToPcm16Codec::CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer )
1.125 + {
1.126 + TBool result = EFalse;
1.127 +
1.128 + if(! aSrcBuffer )
1.129 + {
1.130 + return result;
1.131 + }
1.132 +
1.133 + if( ! aDestBuffer )
1.134 + {
1.135 + return result;
1.136 + }
1.137 +
1.138 + // Check position of src and dest are 0
1.139 + if( aSrcBuffer->Position() )
1.140 + {
1.141 + return result;
1.142 + }
1.143 +
1.144 + // Check position of src and dest are 0
1.145 + if( aDestBuffer->Position() )
1.146 + {
1.147 + return result;
1.148 + }
1.149 +
1.150 + // check there are sufficient bytes in the output to consume the input
1.151 + if( aSrcBuffer->Data().Length() * 2 > aDestBuffer->Data().MaxLength() )
1.152 + {
1.153 + return result;
1.154 + }
1.155 +
1.156 + result = ETrue; // preconditions have been satisfied
1.157 +
1.158 + return result;
1.159 + }