Release 4.0.0-preview1-00051
[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     public enum ColorSpace
23     {
24         /// <summary>
25         /// Y800
26         /// </summary>
27         Y800,
28
29         /// <summary>
30         /// I420
31         /// </summary>
32         I420,
33
34         /// <summary>
35         /// NV12
36         /// </summary>
37         NV12,
38
39         /// <summary>
40         /// NV16
41         /// </summary>
42         NV16,
43
44         /// <summary>
45         /// NV21
46         /// </summary>
47         NV21,
48
49         /// <summary>
50         /// NV61
51         /// </summary>
52         NV61,
53
54         /// <summary>
55         /// YV12
56         /// </summary>
57         ///
58         YV12,
59
60         /// <summary>
61         /// YUYV
62         /// </summary>
63         Yuyv,
64
65         /// <summary>
66         /// YUV422
67         /// </summary>
68         Yuv422,
69
70         /// <summary>
71         /// UYVY
72         /// </summary>
73         Uyvy,
74
75         /// <summary>
76         /// YUV422P
77         /// </summary>
78         ///
79         Yuv422P,
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 }