[NUI][API10] Create Context/CookieManager when WebView is created.
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / MediaTool / MediaFormatChannelPosition.cs
1 /*
2  * Copyright (c) 2019 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 the channel position of <see cref="MediaFormatAudioMimeType.Pcm"/> media format.
21     /// </summary>
22     /// <remarks>This type is based on SMPTE 2036-2-2008 standard.</remarks>
23     /// <seealso cref="MediaFormatAudioMimeType"/>
24     /// <since_tizen> 6 </since_tizen>
25     public enum MediaFormatAudioChannelPosition
26     {
27         /// <summary>
28         /// This is used for position-less channels.
29         /// </summary>
30         /// <since_tizen> 6 </since_tizen>
31         None = -3,
32
33         /// <summary>
34         /// Mono channel.
35         /// </summary>
36         /// <remarks>If user want to set this value, <see cref="AudioMediaFormat.Channel"/> should be 1.</remarks>
37         /// <since_tizen> 6 </since_tizen>
38         Mono = -2,
39
40         /// <summary>
41         /// Invalid position.
42         /// </summary>
43         /// <since_tizen> 6 </since_tizen>
44         Invaild = -1,
45
46         /// <summary>
47         /// A loudspeaker position located at far left and centered vertically with the middle layer.
48         /// </summary>
49         /// <since_tizen> 6 </since_tizen>
50         FrontLeft = 0,
51
52         /// <summary>
53         /// A loudspeaker position located at far right and centered vertically with the middle layer.
54         /// </summary>
55         /// <since_tizen> 6 </since_tizen>
56         FrontRight,
57
58         /// <summary>
59         /// A loudspeaker position located at the middle layer corresponding to the center of the television
60         /// screen as viewed from the seating area.
61         /// </summary>
62         /// <since_tizen> 6 </since_tizen>
63         FrontCenter,
64
65         /// <summary>
66         /// A Low Frequency Effects(band-limited low frequency channel) loudspeaker position located at
67         /// the bottom layer and normally far left front, when LFE2 is used.
68         /// </summary>
69         /// <since_tizen> 6 </since_tizen>
70         LFE1,
71
72         /// <summary>
73         /// A loudspeaker position located at far left back of the middle layer.
74         /// </summary>
75         /// <since_tizen> 6 </since_tizen>
76         BackLeft,
77
78         /// <summary>
79         /// A loudspeaker position located at far right back of the middle layer.
80         /// </summary>
81         /// <since_tizen> 6 </since_tizen>
82         BackRight,
83
84         /// <summary>
85         /// A loudspeaker position located mid-way between the front center and front left of the middle layer.
86         /// </summary>
87         /// <since_tizen> 6 </since_tizen>
88         FrontLeftOrCenter,
89
90         /// <summary>
91         /// A loudspeaker position located mid-way between the front center and front right of the middle layer.
92         /// </summary>
93         /// <since_tizen> 6 </since_tizen>
94         FrontRightOrCenter,
95
96         /// <summary>
97         /// A loudspeaker position located at center back of the middle layer.
98         /// </summary>
99         /// <since_tizen> 6 </since_tizen>
100         BackCenter,
101
102         /// <summary>
103         /// A Low Frequency Effects(band-limited low frequency channel) loudspeaker position located at the
104         /// bottom layer, and is normally at far right front of the bottom layer, when LFE1 is used. 
105         /// </summary>
106         /// <since_tizen> 6 </since_tizen>
107         LFE2,
108
109         /// <summary>
110         /// A loudspeaker position located at left side of the middle layer.
111         /// </summary>
112         /// <since_tizen> 6 </since_tizen>
113         SideLeft,
114
115         /// <summary>
116         /// A loudspeaker position located at right side of the middle layer.
117         /// </summary>
118         /// <since_tizen> 6 </since_tizen>
119         SideRight,
120
121         /// <summary>
122         /// A loudspeaker position located at far left front of the top layer.
123         /// </summary>
124         /// <since_tizen> 6 </since_tizen>
125         TopFrontLeft,
126
127         /// <summary>
128         /// A loudspeaker position located at far right front of the top layer.
129         /// </summary>
130         /// <since_tizen> 6 </since_tizen>
131         TopFrontRight,
132
133         /// <summary>
134         /// A loudspeaker position located at center front of the top layer.
135         /// </summary>
136         /// <since_tizen> 6 </since_tizen>
137         TopFrontCenter,
138
139         /// <summary>
140         /// A loudspeaker position located at the center of the top layer directly above the seating area.
141         /// </summary>
142         /// <since_tizen> 6 </since_tizen>
143         TopCenter,
144
145         /// <summary>
146         /// A loudspeaker position located at far left back of the top layer.
147         /// </summary>
148         /// <since_tizen> 6 </since_tizen>
149         TopBackLeft,
150
151         /// <summary>
152         /// A loudspeaker position located at far right back of the top layer.
153         /// </summary>
154         /// <since_tizen> 6 </since_tizen>
155         TopBackRight,
156
157         /// <summary>
158         /// A loudspeaker position located at left side of the top layer.
159         /// </summary>
160         /// <since_tizen> 6 </since_tizen>
161         TopSideLeft,
162
163         /// <summary>
164         /// A loudspeaker position located at right side of the top layer.
165         /// </summary>
166         /// <since_tizen> 6 </since_tizen>
167         TopSideRight,
168
169         /// <summary>
170         /// A loudspeaker position located at center back of the top layer.
171         /// </summary>
172         /// <since_tizen> 6 </since_tizen>
173         TopBackCenter,
174
175         /// <summary>
176         /// A loudspeaker position located at center front of the bottom layer.
177         /// </summary>
178         /// <since_tizen> 6 </since_tizen>
179         BottomFrontCenter,
180
181         /// <summary>
182         /// A loudspeaker position located at far left front of the bottom layer.
183         /// </summary>
184         /// <since_tizen> 6 </since_tizen>
185         BottomFrontLeft,
186
187         /// <summary>
188         /// A loudspeaker position located at far right front of the bottom layer.
189         /// </summary>
190         /// <since_tizen> 6 </since_tizen>
191         BottomFrontRight,
192
193         /// <summary>
194         /// A loudspeaker position located between front left and side left.
195         /// </summary>
196         /// <since_tizen> 6 </since_tizen>
197         WideLeft,
198
199         /// <summary>
200         /// A loudspeaker position located between front right and side right.
201         /// </summary>
202         /// <since_tizen> 6 </since_tizen>
203         WideRight,
204
205         /// <summary>
206         /// A loudspeaker position located between back left and side left.
207         /// </summary>
208         /// <since_tizen> 6 </since_tizen>
209         SurroundLeft,
210
211         /// <summary>
212         /// A loudspeaker position located between back right and side right.
213         /// </summary>
214         /// <since_tizen> 6 </since_tizen>
215         SurroundRight
216     }
217 }