[NUI][API10] Create Context/CookieManager when WebView is created.
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / MediaTool / MediaFormatContainerMimeType.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 the mime types for container media formats.
21     /// </summary>
22     /// <since_tizen> 3 </since_tizen>
23     public enum MediaFormatContainerMimeType
24     {
25         /// <summary>
26         /// MP4 container, video.
27         /// </summary>
28         MP4 = (MediaFormatType.Container | 0x3010),
29
30         /// <summary>
31         /// AVI container, video.
32         /// </summary>
33         Avi = (MediaFormatType.Container | 0x3020),
34
35         /// <summary>
36         /// MPEG2TS container, video.
37         /// </summary>
38         Mpeg2TS = (MediaFormatType.Container | 0x3030),
39
40         /// <summary>
41         /// MPEG2PS container, video.
42         /// </summary>
43         Mpeg2PS = (MediaFormatType.Container | 0x3040),
44
45         /// <summary>
46         /// MATROSKA container, video.
47         /// </summary>
48         Matroska = (MediaFormatType.Container | 0x3050),
49
50         /// <summary>
51         /// WEBM container, video.
52         /// </summary>
53         Webm = (MediaFormatType.Container | 0x3060),
54
55         /// <summary>
56         /// 3GP container, video.
57         /// </summary>
58         ThreeGP = (MediaFormatType.Container | 0x3070),
59
60         /// <summary>
61         /// WAV container, audio.
62         /// </summary>
63         Wav = (MediaFormatType.Container | 0x4010),
64
65         /// <summary>
66         ///  OGG container, audio
67         /// </summary>
68         Ogg = (MediaFormatType.Container | 0x4020),
69
70         /// <summary>
71         /// AAC_ADTS container, audio
72         /// </summary>
73         AacAdts = (MediaFormatType.Container | 0x4030),
74
75         /// <summary>
76         /// AAC_ADIF container, audio.
77         /// </summary>
78         AacAdif = (MediaFormatType.Container | 0x4031),
79     }
80 }