Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.Vision / MediaVision / 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 colorspaces for MediaVision.
21     /// </summary>
22     /// <since_tizen> 3</since_tizen>
23     public enum Colorspace
24     {
25         /// <summary>
26         /// The colorspace type is invalid.
27         /// </summary>
28         /// <since_tizen> 3</since_tizen>
29         Invalid,
30         /// <summary>
31         /// The colorspace type is Y800.
32         /// </summary>
33         /// <since_tizen> 3</since_tizen>
34         Y800,
35         /// <summary>
36         /// The colorspace type is I420.
37         /// </summary>
38         /// <since_tizen> 3</since_tizen>
39         I420,
40         /// <summary>
41         /// The colorspace type is NV12.
42         /// </summary>
43         /// <since_tizen> 3</since_tizen>
44         NV12,
45         /// <summary>
46         /// The colorspace type is YV12.
47         /// </summary>
48         /// <since_tizen> 3</since_tizen>
49         YV12,
50         /// <summary>
51         /// The colorspace type is NV21.
52         /// </summary>
53         /// <since_tizen> 3</since_tizen>
54         NV21,
55         /// <summary>
56         /// The colorspace type is YUYV.
57         /// </summary>
58         /// <since_tizen> 3</since_tizen>
59         Yuyv,
60         /// <summary>
61         /// The colorspace type is UYVY.
62         /// </summary>
63         /// <since_tizen> 3</since_tizen>
64         Uyvy,
65         /// <summary>
66         /// The colorspace type is 422P.
67         /// </summary>
68         /// <since_tizen> 3</since_tizen>
69         Yuv422P,
70         /// <summary>
71         /// The colorspace type is RGB565.
72         /// </summary>
73         /// <since_tizen> 3</since_tizen>
74         Rgb565,
75         /// <summary>
76         /// The colorspace type is RGB888.
77         /// </summary>
78         /// <since_tizen> 3</since_tizen>
79         Rgb888,
80         /// <summary>
81         /// The colorspace type is RGBA.
82         /// </summary>
83         /// <since_tizen> 3</since_tizen>
84         Rgba
85     }
86 }