sl@0
|
1 |
//a3ffourcclookup.h
|
sl@0
|
2 |
|
sl@0
|
3 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
4 |
// All rights reserved.
|
sl@0
|
5 |
// This component and the accompanying materials are made available
|
sl@0
|
6 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
7 |
// which accompanies this distribution, and is available
|
sl@0
|
8 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
9 |
//
|
sl@0
|
10 |
// Initial Contributors:
|
sl@0
|
11 |
// Nokia Corporation - initial contribution.
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Contributors:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
// Description:
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalTechnology
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef A3FFOURCCLOOKUP_H
|
sl@0
|
25 |
#define A3FFOURCCLOOKUP_H
|
sl@0
|
26 |
|
sl@0
|
27 |
//INCLUDES
|
sl@0
|
28 |
#include <ecom/ecom.h>
|
sl@0
|
29 |
#include <mmf/common/mmfutilities.h>
|
sl@0
|
30 |
#include <e32hashtab.h>
|
sl@0
|
31 |
#include <a3f/a3fbase.h>
|
sl@0
|
32 |
|
sl@0
|
33 |
//CLASS DECLARATION
|
sl@0
|
34 |
/*
|
sl@0
|
35 |
CFourCCConvertor class
|
sl@0
|
36 |
This is a class used to load the format Uids and fourCC codes in to Cache Table.
|
sl@0
|
37 |
This class is used for resolution of the fourCC code corresponding to format UID and vice-versa.
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
class CFourCCConvertor : public CBase
|
sl@0
|
40 |
{
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
/*
|
sl@0
|
43 |
Create a Single instance of a class.If the instance is already created, It
|
sl@0
|
44 |
returns that instance.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
IMPORT_C static CFourCCConvertor* NewL();
|
sl@0
|
47 |
|
sl@0
|
48 |
/*
|
sl@0
|
49 |
This method is used to find fourCC code corresponding to format Uid from cache table.
|
sl@0
|
50 |
@param TUid aFormat a unique format Uid.
|
sl@0
|
51 |
@param TFourCC &aFourCC The unique FourCC code.
|
sl@0
|
52 |
@return an error code. KErrNone if successful, otherwise one of the system wide error codes.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
IMPORT_C TInt FormatToFourCC(TUid aFormat,TFourCC &aFourCC);
|
sl@0
|
55 |
|
sl@0
|
56 |
/*
|
sl@0
|
57 |
This method is used to find format Uid corresponding to fourCC Code from cache table.
|
sl@0
|
58 |
@param TFourCC &aFourCC The unique FourCC code.
|
sl@0
|
59 |
@param TUid aFormat a unique format Uid.
|
sl@0
|
60 |
@return an error code. KErrNone if successful, otherwise one of the system wide error codes.
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
IMPORT_C TInt FourCCToFormat(TFourCC aFourCC, TUid &aFormat) const;
|
sl@0
|
63 |
|
sl@0
|
64 |
/*
|
sl@0
|
65 |
Destructor
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
virtual ~CFourCCConvertor();
|
sl@0
|
68 |
|
sl@0
|
69 |
private:
|
sl@0
|
70 |
/*
|
sl@0
|
71 |
Constructor
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
CFourCCConvertor();
|
sl@0
|
74 |
|
sl@0
|
75 |
/*
|
sl@0
|
76 |
Second Phase Constructor
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
void ConstructL();
|
sl@0
|
79 |
|
sl@0
|
80 |
/*
|
sl@0
|
81 |
This method is used to initialize the cache tables. This method uses two cache
|
sl@0
|
82 |
tables. It Stores Format Uids corresponding to fourCC Codes in one cache table
|
sl@0
|
83 |
and fourCC codes corresponding to Format Uids in another cache table. In the First
|
sl@0
|
84 |
cache table,it uses format Uid as key and in the second cache table, it uses fourCC code as key.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
void LoadL();
|
sl@0
|
87 |
|
sl@0
|
88 |
// DATA DECLARATION
|
sl@0
|
89 |
|
sl@0
|
90 |
/* Cache Table that stores FourCC codes corresponding to Format Uids */
|
sl@0
|
91 |
RHashMap<TUint32,TUint32> *iHashFourCCToFormat;
|
sl@0
|
92 |
|
sl@0
|
93 |
/* Cache Table that stores format Uids corresponding to FourCC codes */
|
sl@0
|
94 |
RHashMap<TUint32,TUint32> *iHashFormatToFourCC;
|
sl@0
|
95 |
|
sl@0
|
96 |
};
|
sl@0
|
97 |
|
sl@0
|
98 |
#endif // A3FFOURCCLOOKUP_H
|