1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmlibs/mmfw/src/Plugin/Codec/audio/MMFAudios16ToPcms16Codec.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,95 @@
1.4 +/*
1.5 +* Copyright (c) 1997-2002 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +#include "MMFAudioS16ToPcms16Codec.h"
1.24 +
1.25 +
1.26 +// __________________________________________________________________________
1.27 +// Implementation
1.28 +
1.29 +CMMFCodec* CMMFAudioS16PcmS16Codec::NewL(TAny* aInitParams)
1.30 + {
1.31 + CMMFAudioS16PcmS16Codec* self=new(ELeave) CMMFAudioS16PcmS16Codec();
1.32 + CleanupStack::PushL(self);
1.33 + self->ConstructL(aInitParams);
1.34 + CleanupStack::Pop(self);
1.35 + return STATIC_CAST( CMMFCodec*, self );
1.36 + }
1.37 +
1.38 +CMMFAudioS16PcmS16Codec::~CMMFAudioS16PcmS16Codec()
1.39 + {
1.40 + }
1.41 +
1.42 +CMMFAudioS16PcmS16Codec::CMMFAudioS16PcmS16Codec()
1.43 + {
1.44 + }
1.45 +
1.46 +void CMMFAudioS16PcmS16Codec::ConstructL(TAny* /*aInitParams*/)
1.47 + {
1.48 + }
1.49 +
1.50 +
1.51 +//this codec has a does not expand or shrink destination data
1.52 +TCodecProcessResult CMMFAudioS16PcmS16Codec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
1.53 + {
1.54 +
1.55 + TCodecProcessResult result;
1.56 + result.iStatus = TCodecProcessResult::EProcessIncomplete;
1.57 +
1.58 + //convert from generic CMMFBuffer to CMMFDataBuffer
1.59 + iSrc = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
1.60 + iDst = STATIC_CAST(CMMFDataBuffer*, &aDst);
1.61 +
1.62 + const TUint dstMaxLen = iDst->Data().MaxLength();
1.63 +
1.64 + if (!dstMaxLen)
1.65 + User::Leave(KErrArgument);
1.66 +
1.67 + //don't scribble Destination (pDst) by only consuming enough source to fill pDst
1.68 + TUint srcUse = dstMaxLen - iDst->Position();
1.69 + const TUint srcLen = iSrc->Data().Length();
1.70 + const TUint sourceRemain = srcLen - iSrc->Position();
1.71 +
1.72 + //make sure we don't blow source by checking against remaining
1.73 + //and clipping to minimum remaining if necessary
1.74 + srcUse = (srcUse<sourceRemain ? srcUse : sourceRemain);
1.75 +
1.76 + //we need to cast away CONST even on the source, as the TClass needs a TUint8*
1.77 + TUint8* pSrc = CONST_CAST(TUint8*,iSrc->Data().Ptr());
1.78 + pSrc += iSrc->Position();
1.79 + TUint8* pDst = CONST_CAST(TUint8*,iDst->Data().Ptr());
1.80 + pDst += iDst->Position();
1.81 +
1.82 + //divide by TWO as 2 bytes are equal to 1 sample
1.83 + Mem::Copy( pDst, pSrc, srcUse / 2 );
1.84 +
1.85 + if (srcUse + iDst->Position() < dstMaxLen)
1.86 + result.iStatus = TCodecProcessResult::EDstNotFilled;
1.87 +
1.88 + else if (srcUse + iSrc->Position() >= srcLen)
1.89 + result.iStatus = TCodecProcessResult::EProcessComplete;
1.90 +
1.91 + result.iSrcBytesProcessed = srcUse;
1.92 + result.iDstBytesAdded = srcUse;
1.93 +
1.94 + iDst->Data().SetLength(iDst->Position() + srcUse);
1.95 +
1.96 + return result;
1.97 +
1.98 + }