diff -r 000000000000 -r 71ca22bcf22a mmserv/metadatautility/3GPExtParserLib_stub/src/3GPExtParserLib_stub.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmserv/metadatautility/3GPExtParserLib_stub/src/3GPExtParserLib_stub.cpp Tue Feb 02 01:08:46 2010 +0200 @@ -0,0 +1,115 @@ +/* +* Copyright (c) 2004 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: This class implements an 3GPExt metadata parser +* +*/ + +// INCLUDE FILES +#include "3GPExtParser.h" + + + +// ============================ MEMBER FUNCTIONS =============================== + +// ----------------------------------------------------------------------------- +// C3GPExtParser::C3GPExtParser +// C++ default constructor can NOT contain any code, that +// might leave. +// ----------------------------------------------------------------------------- +// +C3GPExtParser::C3GPExtParser(MP4Handle& aMP4Handle): iMP4Handle(aMP4Handle), ilst(NULL, 0) + { + } + +// ----------------------------------------------------------------------------- +// C3GPExtParser::ConstructL +// Symbian 2nd phase constructor can leave. +// ----------------------------------------------------------------------------- +// +void C3GPExtParser::ConstructL() + { + } + +// ----------------------------------------------------------------------------- +// C3GPExtParser::NewL +// Two-phased constructor. +// ----------------------------------------------------------------------------- +// +EXPORT_C C3GPExtParser* C3GPExtParser::NewL(MP4Handle& aMP4Handle) + { + C3GPExtParser* self = new( ELeave ) C3GPExtParser (aMP4Handle); + return self; + } + +// Destructor +C3GPExtParser::~C3GPExtParser() + { + } + +// ----------------------------------------------------------------------------- +// 3GPExtParser::GetilstBoxesL +// ----------------------------------------------------------------------------- +// +EXPORT_C void C3GPExtParser::GetilstBoxesL(const TDesC8 &/*aBox*/, TMetaDataFieldId /*aFieldId*/, HBufC** /*aBuf*/) +{ + User::Leave(KErrNotSupported); +} +// ----------------------------------------------------------------------------- +// 3GPExtParser::GetilstBoxesL for 8-bit descriptor fields +// ----------------------------------------------------------------------------- +// +EXPORT_C void C3GPExtParser::GetilstBoxesL(const TDesC8 &/*aBox*/, TMetaDataFieldId /*aFieldId*/, HBufC8** /*aBuf*/) +{ + User::Leave(KErrNotSupported); +} + +// ----------------------------------------------------------------------------- +// C3GPExtParser::Is3GPExtMetadataL +// ----------------------------------------------------------------------------- +// +EXPORT_C TBool C3GPExtParser::Is3GPExtMetadataL() +{ + User::Leave(KErrNotSupported); + return EFalse; +} + +// ----------------------------------------------------------------------------- +// 3GPExtParser::MapID3v1GenreToString() +// ----------------------------------------------------------------------------- +// +void C3GPExtParser::ParseIlstBoxesL() +{ +} + +// ----------------------------------------------------------------------------- +// 3GPExtParser::MapID3v1GenreToString() +// ----------------------------------------------------------------------------- +// +void C3GPExtParser::MapID3GenreToString(TInt /*aNum*/, TDes& /*aGenrePtr*/) +{ +} + + +// ----------------------------------------------------------------------------- +// 3GPExtParser::TranslateMP4Err +// ----------------------------------------------------------------------------- +// +TInt C3GPExtParser::TranslateMP4Err(MP4Err /*aError*/) +{ + return KErrNotSupported; +} + + + +// End of File