[Multimedia] Changed Yuv422 definition and the value of Yuv422P of ColorSpace.
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / Common / ColorSpace.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 namespace Tizen.Multimedia
18 {
19     /// <summary>
20     /// Specifies color spaces for Tizen.Multimedia.
21     /// </summary>
22     /// <since_tizen> 3 </since_tizen>
23     public enum ColorSpace
24     {
25         /// <summary>
26         /// Y800.
27         /// </summary>
28         Y800,
29
30         /// <summary>
31         /// I420.
32         /// </summary>
33         I420,
34
35         /// <summary>
36         /// NV12.
37         /// </summary>
38         NV12,
39
40         /// <summary>
41         /// NV16.
42         /// </summary>
43         NV16,
44
45         /// <summary>
46         /// NV21.
47         /// </summary>
48         NV21,
49
50         /// <summary>
51         /// NV61.
52         /// </summary>
53         NV61,
54
55         /// <summary>
56         /// YV12.
57         /// </summary>
58         ///
59         YV12,
60
61         /// <summary>
62         /// YUYV.
63         /// </summary>
64         Yuyv,
65
66         /// <summary>
67         /// YUV422, alias for <see cref="Yuv422P"/>.
68         /// </summary>
69         Yuv422,
70
71         /// <summary>
72         /// YUV422P.
73         /// </summary>
74         Yuv422P = Yuv422,
75
76         /// <summary>
77         /// UYVY.
78         /// </summary>
79         Uyvy,
80
81         /// <summary>
82         /// RGB565.
83         /// </summary>
84         Rgb565,
85
86         /// <summary>
87         /// RGB888.
88         /// </summary>
89         Rgb888,
90
91         /// <summary>
92         /// RGBA8888.
93         /// </summary>
94         Rgba8888,
95
96         /// <summary>
97         /// ARGB8888.
98         /// </summary>
99         Argb8888,
100
101         /// <summary>
102         /// BGRA8888.
103         /// </summary>
104         Bgra8888,
105
106         /// <summary>
107         /// BGRX8888.
108         /// </summary>
109         Bgrx8888
110
111     }
112 }