williamr@2
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
williamr@2
|
2 |
// All rights reserved.
|
williamr@2
|
3 |
// This component and the accompanying materials are made available
|
williamr@2
|
4 |
// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
|
williamr@2
|
5 |
// which accompanies this distribution, and is available
|
williamr@2
|
6 |
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
|
williamr@2
|
7 |
//
|
williamr@2
|
8 |
// Initial Contributors:
|
williamr@2
|
9 |
// Nokia Corporation - initial contribution.
|
williamr@2
|
10 |
//
|
williamr@2
|
11 |
// Contributors:
|
williamr@2
|
12 |
//
|
williamr@2
|
13 |
// Description:
|
williamr@2
|
14 |
//
|
williamr@2
|
15 |
|
williamr@2
|
16 |
#ifndef CONVERSIONCOEFFICIENT_H
|
williamr@2
|
17 |
#define CONVERSIONCOEFFICIENT_H
|
williamr@2
|
18 |
|
williamr@2
|
19 |
/**
|
williamr@2
|
20 |
Specifies the possible YUV-RGB conversion coefficients to use.
|
williamr@2
|
21 |
|
williamr@2
|
22 |
The coefficients are determined by two factors:
|
williamr@2
|
23 |
The YUV signal range used, and the actual conversion multipliers.
|
williamr@2
|
24 |
@publishedAll
|
williamr@2
|
25 |
@released
|
williamr@2
|
26 |
*/
|
williamr@2
|
27 |
enum TYuvCoefficients
|
williamr@2
|
28 |
{
|
williamr@2
|
29 |
/**
|
williamr@2
|
30 |
The nominal Y range is [16…235] and the U and V ranges [16…240]. This corresponds to H.264 | MPEG-4 AVC video_range_flag=0.
|
williamr@2
|
31 |
*/
|
williamr@2
|
32 |
EYuvRange0 = 0x01000000,
|
williamr@2
|
33 |
|
williamr@2
|
34 |
/**
|
williamr@2
|
35 |
The nominal Y, U, and V ranges are [0…255]. This corresponds to H.264 | MPEG-4 AVC video_range_flag=1.
|
williamr@2
|
36 |
*/
|
williamr@2
|
37 |
EYuvRange1 = 0x02000000,
|
williamr@2
|
38 |
|
williamr@2
|
39 |
/**
|
williamr@2
|
40 |
The YUV-RGB conversion cofficients are those specified in ITU-R Recommendation BT.709.
|
williamr@2
|
41 |
This corresponds to H.264 | MPEG-4 AVC matrix_coefficients=1. BT.709 is the default YUV format used
|
williamr@2
|
42 |
for MPEG-4 Part 2 and H.264 | MPEG-4 AVC.
|
williamr@2
|
43 |
*/
|
williamr@2
|
44 |
EYuvBt709 = 0x00000001,
|
williamr@2
|
45 |
|
williamr@2
|
46 |
/**
|
williamr@2
|
47 |
YUV data with range 0 (Y [16…235]) and conversion coefficients according to BT.709.
|
williamr@2
|
48 |
This is the most typical configuration.
|
williamr@2
|
49 |
*/
|
williamr@2
|
50 |
EYuvBt709Range0 = EYuvRange0 | EYuvBt709,
|
williamr@2
|
51 |
|
williamr@2
|
52 |
/**
|
williamr@2
|
53 |
YUV data with range 1 (Y [0…255]) and conversion coefficients according to BT.709.
|
williamr@2
|
54 |
*/
|
williamr@2
|
55 |
EYuvBt709Range1 = EYuvRange1 | EYuvBt709,
|
williamr@2
|
56 |
|
williamr@2
|
57 |
/**
|
williamr@2
|
58 |
The YUV-RGB conversion cofficients are those specified in ITU-R Recommendation BT.601.5.
|
williamr@2
|
59 |
*/
|
williamr@2
|
60 |
EYuvBt601 = 0x00000002,
|
williamr@2
|
61 |
|
williamr@2
|
62 |
/**
|
williamr@2
|
63 |
YUV data with range 0 (Y [16…235]) and conversion coefficients according to BT.601.5.
|
williamr@2
|
64 |
This is the data format used in H.263.
|
williamr@2
|
65 |
*/
|
williamr@2
|
66 |
EYuvBt601Range0 = EYuvRange0 | EYuvBt601,
|
williamr@2
|
67 |
|
williamr@2
|
68 |
/**
|
williamr@2
|
69 |
YUV data with range 1 (Y [0…255]) and conversion coefficients according to BT.601.5.
|
williamr@2
|
70 |
*/
|
williamr@2
|
71 |
EYuvBt601Range1 = EYuvRange1 | EYuvBt601,
|
williamr@2
|
72 |
|
williamr@2
|
73 |
/**
|
williamr@2
|
74 |
A custom conversion matrix is used.
|
williamr@2
|
75 |
@see TYuvConversionMatrix.
|
williamr@2
|
76 |
*/
|
williamr@2
|
77 |
ECustomYuvMatrix = 0x00800000
|
williamr@2
|
78 |
};
|
williamr@2
|
79 |
|
williamr@2
|
80 |
#endif // CONVERSIONCOEFFICIENT_H
|