diff -r 000000000000 -r 1bce908db942 multimediacommsengine/mmcecli/src/mceilbccodec.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/multimediacommsengine/mmcecli/src/mceilbccodec.cpp Tue Feb 02 01:04:58 2010 +0200 @@ -0,0 +1,271 @@ +/* +* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + + + +#include "mceilbccodec.h" +#include "mcecomilbccodec.h" +#include "mcecomaudiocodec.h" +#include "mceaudiostream.h" + + +#define _FLAT_DATA static_cast( iFlatData ) +#define FLAT_DATA( data ) _FLAT_DATA->data + +// ============================ MEMBER FUNCTIONS =============================== + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::~CMceiLBCCodec +// ----------------------------------------------------------------------------- +// +EXPORT_C CMceiLBCCodec::~CMceiLBCCodec() + { + } + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::CloneL +// ----------------------------------------------------------------------------- +// +EXPORT_C CMceAudioCodec* CMceiLBCCodec::CloneL() const + { + CMceiLBCCodec* clone = CMceiLBCCodec::NewLC( FLAT_DATA( iSdpName ) ); + + CMceComAudioCodec* cloneFlatData = + static_cast( clone->iFlatData ); + + cloneFlatData->iID = FLAT_DATA( iID ); + cloneFlatData->SetFmtpAttributeL( *(FLAT_DATA( iFmtpAttr )) ); + cloneFlatData->iEnableVAD = FLAT_DATA( iEnableVAD ); + cloneFlatData->iSamplingFreq = FLAT_DATA( iSamplingFreq ); + cloneFlatData->iPTime = FLAT_DATA( iPTime ); + cloneFlatData->iMaxPTime = FLAT_DATA( iMaxPTime ); + cloneFlatData->iBitrate = FLAT_DATA( iBitrate ); + cloneFlatData->iAllowedBitrates = FLAT_DATA( iAllowedBitrates ); + cloneFlatData->iPayloadType = FLAT_DATA( iPayloadType ); + cloneFlatData->iCodecMode = FLAT_DATA( iCodecMode ); + cloneFlatData->iFourCC = FLAT_DATA( iFourCC ); + cloneFlatData->iFrameSize = FLAT_DATA( iFrameSize ); + + CleanupStack::Pop( clone ); + + return clone; + } + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::EnableVAD +// ----------------------------------------------------------------------------- +// +EXPORT_C TInt CMceiLBCCodec::EnableVAD( TBool aEnableVAD ) + { + FLAT_DATA( iEnableVAD ) = aEnableVAD; + return KErrNone; + } + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::SetBitrate +// ----------------------------------------------------------------------------- +// +EXPORT_C TInt CMceiLBCCodec::SetBitrate(TUint aBitrate) + { + if ( aBitrate != Bitrate() ) + { + TInt ret = _FLAT_DATA->SetBitrate( aBitrate ); + if ( KErrNone == ret ) + { + CMceAudioStream* stream = static_cast< CMceAudioStream* >( iStream ); + if ( stream && stream->BoundStream() ) + { + // Find the same codec in bound stream, and set bitrate also to that. + CMceCodec* codec = stream->Bound()->FindCodec( *this ); + if ( codec ) + { + ret = codec->SetBitrate( aBitrate ); + } + } + } + + return ret; + } + else + { + // Avoid looping, go here if already set + return KErrNone; + } + } + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::SetAllowedBitrates +// ----------------------------------------------------------------------------- +// +EXPORT_C TInt CMceiLBCCodec::SetAllowedBitrates( TUint aBitrates ) + { + if ( aBitrates != AllowedBitrates() ) + { + TInt ret = _FLAT_DATA->SetAllowedBitrates( aBitrates ); + if ( ret == KErrNone ) + { + CMceAudioStream* stream = static_cast< CMceAudioStream* >( iStream ); + if ( stream && stream->BoundStream() ) + { + // Find the same codec in bound stream, and set bitrates also to that. + CMceCodec* codec = stream->Bound()->FindCodec( *this ); + if ( codec ) + { + ret = codec->SetAllowedBitrates( aBitrates ); + } + } + } + return ret; + } + else + { + // Avoid looping, go here if already set + return KErrNone; + } + } + + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::SetSamplingFreq +// ----------------------------------------------------------------------------- +// +EXPORT_C TInt CMceiLBCCodec::SetSamplingFreq(TUint aSamplingFreq) + { + return _FLAT_DATA->SetSamplingFreq( aSamplingFreq ); + } + + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::SetPTime +// ----------------------------------------------------------------------------- +// +EXPORT_C TInt CMceiLBCCodec::SetPTime(TUint aPTime) + { + return _FLAT_DATA->SetPTime( aPTime ); + } + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::SetMaxPTime +// ----------------------------------------------------------------------------- +// +EXPORT_C TInt CMceiLBCCodec::SetMaxPTime(TUint aMaxPTime) + { + return _FLAT_DATA->SetMaxPTime( aMaxPTime ); + } + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::SetPayloadType +// ----------------------------------------------------------------------------- +// +EXPORT_C TInt CMceiLBCCodec::SetPayloadType(TUint8 aPayloadType) + { + return _FLAT_DATA->SetPayloadType( aPayloadType ); + } + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::SetCodecMode +// ----------------------------------------------------------------------------- +// +EXPORT_C TInt CMceiLBCCodec::SetCodecMode(TUint aCodecMode) + { + if ( aCodecMode != CodecMode() ) + { + TInt ret = _FLAT_DATA->SetCodecMode( aCodecMode ); + if ( KErrNone == ret ) + { + CMceAudioStream* stream = static_cast< CMceAudioStream* >( iStream ); + if ( stream && stream->BoundStream() ) + { + // Find the same codec in bound stream, and set mode also to that. + CMceCodec* codec = stream->Bound()->FindCodec( *this ); + if ( codec ) + { + ret = codec->SetCodecMode( aCodecMode ); + } + } + } + + return ret; + } + else + { + // Avoid looping, go here if already set + return KErrNone; + } + } + + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::NewL +// ----------------------------------------------------------------------------- +// +CMceiLBCCodec* CMceiLBCCodec::NewL( TBuf8 aSdpName ) + { + CMceiLBCCodec* self = NewLC( aSdpName ); + CleanupStack::Pop( self ); + return self; + + } + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::NewL +// ----------------------------------------------------------------------------- +// +CMceiLBCCodec* CMceiLBCCodec::NewLC( TBuf8 aSdpName ) + { + CMceiLBCCodec* self = new (ELeave) CMceiLBCCodec(); + CleanupStack::PushL( self ); + self->ConstructL( aSdpName ); + return self; + + } + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::CMceiLBCCodec +// ----------------------------------------------------------------------------- +// +CMceiLBCCodec::CMceiLBCCodec() + : CMceAudioCodec() + { + } + + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::ConstructL +// ----------------------------------------------------------------------------- +// +void CMceiLBCCodec::ConstructL( TBuf8 aSdpName ) + { + CMceComAudioCodec* codec = CMceComiLBCCodec::NewLC( aSdpName ); + CMceAudioCodec::ConstructL( codec ); + + CleanupStack::Pop( codec ); + } + + +// ----------------------------------------------------------------------------- +// CMceiLBCCodec::SetSdpNameL +// ----------------------------------------------------------------------------- +// +void CMceiLBCCodec::SetSdpNameL( const TDesC8& aSdpName ) + { + __ASSERT_ALWAYS( aSdpName.Length() <= KMceMaxSdpNameLength, + User::Leave( KErrArgument ) ); + FLAT_DATA( iSdpName ).Copy( aSdpName ); + } +