|
1 // Copyright (c) 2005-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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef CODECAPIRESOLVERCONSTS_H |
|
17 #define CODECAPIRESOLVERCONSTS_H |
|
18 |
|
19 /** |
|
20 Opaque data tag for the media uid |
|
21 */ |
|
22 _LIT8(KMediaUid, "<i>"); |
|
23 |
|
24 /** |
|
25 Opaque data tag for the input data format |
|
26 */ |
|
27 _LIT8(KInputPortFormat, "<s>"); |
|
28 |
|
29 /** |
|
30 Opaque data tag for the output data format |
|
31 */ |
|
32 _LIT8(KOutputPortFormat, "<d>"); |
|
33 |
|
34 /** |
|
35 Opaque data tag for the manufacturer name |
|
36 */ |
|
37 _LIT8(KManufacturer, "<m>"); |
|
38 |
|
39 /** |
|
40 Opaque data tag for the picture size |
|
41 */ |
|
42 _LIT8(KMaxPictureSize, "<p>"); |
|
43 |
|
44 /** |
|
45 Opaque data tag for the picture rate and size |
|
46 */ |
|
47 _LIT8(KListOfPictureRateAndSize, "<l>"); |
|
48 |
|
49 /** |
|
50 Opaque data tag general format |
|
51 */ |
|
52 _LIT8(KTagMatch, "*<?>*"); |
|
53 |
|
54 /** |
|
55 Opaque data tag for comma |
|
56 */ |
|
57 _LIT8(KComma, "*,*"); |
|
58 |
|
59 /** |
|
60 Length of a tag from the opaque data |
|
61 */ |
|
62 const TUint KTagLength = 3; |
|
63 |
|
64 #endif // CODECAPIRESOLVERCONSTS_H |