1 /* |
|
2 * Copyright (c) 2005 - 2008 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Bit flag definitions for VT local variation. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef VIDEOTELEPHONYVARIANT_HRH |
|
20 #define VIDEOTELEPHONYVARIANT_HRH |
|
21 |
|
22 |
|
23 /** |
|
24 * KVTLVFlagScalingMethodENearest defines whether the video image is |
|
25 * scaled using Nearest algorithm, which is fast, but quality is low. |
|
26 * When the flag is set ENearest is used. |
|
27 * @since S60 v2.8 |
|
28 */ |
|
29 #define KVTLVFlagScalingMethodENearest 0x00000001 |
|
30 |
|
31 /** |
|
32 * KVTLVFlagScalingMethodEBilinear defines whether the video image is |
|
33 * scaled using Bilinear algorithm, which offers the best quality, but in a |
|
34 * slow way. When the flag is set Bilinear is used. |
|
35 * @since S60 v2.8 |
|
36 */ |
|
37 #define KVTLVFlagScalingMethodEBilinear 0x00000002 |
|
38 |
|
39 /** |
|
40 * KVTLVFlagEnableBitReversal defines if bit order should be |
|
41 * reversed in PV. |
|
42 * When the flag is set bit order is reversed. |
|
43 */ |
|
44 #define KVTLVFlagEnableBitReversal 0x00000004 |
|
45 |
|
46 /** |
|
47 * KVTLVFlagEnableAMR_WB defines if AMR wideband is supported in video calls. |
|
48 * @since S60 v5.0 |
|
49 */ |
|
50 #define KVTLVFlagEnableAMR_WB 0x00000008 |
|
51 |
|
52 /** |
|
53 * KVTLVFlagSupportMpeg4 defines whether the PV should support Mepg4. |
|
54 * @since S60 v5.0 |
|
55 */ |
|
56 #define KVTLVFlagDisableMpeg4 0x00000010 |
|
57 |
|
58 #endif // VIDEOTELEPHONYVARIANT_HRH |
|
59 |
|
60 // End of File |
|