Merge "[WiFi] GetConnectedAP() Returns null if there is no connected AP"
[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.
68         /// </summary>
69         Yuv422,
70
71         /// <summary>
72         /// UYVY.
73         /// </summary>
74         Uyvy,
75
76         /// <summary>
77         /// YUV422P.
78         /// </summary>
79         ///
80         Yuv422P,
81
82         /// <summary>
83         /// RGB565.
84         /// </summary>
85         Rgb565,
86
87         /// <summary>
88         /// RGB888.
89         /// </summary>
90         Rgb888,
91
92         /// <summary>
93         /// RGBA8888.
94         /// </summary>
95         Rgba8888,
96
97         /// <summary>
98         /// ARGB8888.
99         /// </summary>
100         Argb8888,
101
102         /// <summary>
103         /// BGRA8888.
104         /// </summary>
105         Bgra8888,
106
107         /// <summary>
108         /// BGRX8888.
109         /// </summary>
110         Bgrx8888
111
112     }
113 }