Update contrib.
1 // Copyright (c) 2007-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include <mmf/devvideo/devvideobase.h>
23 #include <videorenderer.rsg>
24 #include "resourcefilereader.h"
25 #include "rendererutil.h"
28 CResourceFileReader* CResourceFileReader::NewL(const TDesC& aResourceFile)
30 CResourceFileReader* self = CResourceFileReader::NewLC(aResourceFile);
31 CleanupStack::Pop(self);
35 CResourceFileReader* CResourceFileReader::NewLC(const TDesC& aResourceFile)
37 CResourceFileReader* self = new (ELeave) CResourceFileReader();
38 CleanupStack::PushL(self);
39 self->ConstructL(aResourceFile);
43 CResourceFileReader::CResourceFileReader()
47 void CResourceFileReader::ConstructL(const TDesC& aResourceFile)
49 User::LeaveIfError(iFs.Connect());
50 iResourceFile.OpenL(iFs, aResourceFile);
53 CResourceFileReader::~CResourceFileReader()
55 iResourceFile.Close();
59 void CResourceFileReader::ReadSupportedFormatL(RArray<TUncompressedVideoFormat>& aArray)
61 aArray.Reset(); // first clear the old data
63 HBufC8* res = iResourceFile.AllocReadLC(GCE_SUPPORTED_FORMAT);
64 TResourceReader reader;
65 reader.SetBuffer(res);
67 TInt count = reader.ReadInt16();
68 for (TInt i = 0; i < count; ++i)
70 TVideoRendererPixelFormat format = static_cast<TVideoRendererPixelFormat>(reader.ReadUint32());
71 TUncompressedVideoFormat uncompressedFormat = VideoRendererUtil::ConvertPixelFormatToUncompressedVideoFormatL(format);
72 aArray.AppendL(uncompressedFormat);
75 CleanupStack::PopAndDestroy(res);
78 void CResourceFileReader::ReadTimerInfoL(TInt64& aDefaultDelay, TInt64& aMaxDelay)
80 HBufC8* res = iResourceFile.AllocReadLC(TIMER);
81 TResourceReader reader;
82 reader.SetBuffer(res);
84 aDefaultDelay = static_cast<TInt64>(reader.ReadInt32());
85 aMaxDelay = static_cast<TInt64>(reader.ReadInt32());
87 CleanupStack::PopAndDestroy(res);