Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.MediaCodec / MediaCodec / SupportedCodecType.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.MediaCodec
18 {
19     internal enum SupportedCodecType
20     {
21         // L16 = 0x1010,
22         // ALaw = 0x1020,
23         // ULaw = 0x1030,
24         Amr = 0x1040,
25         AmrNB = 0x1040,
26         AmrWb = 0x1041,
27         // G729 = 0x1050,
28         Aac = 0x1060,
29         AacLC = 0x1060,
30         AacHE = 0x1061,
31         AacHEPS = 0x1062,
32         MP3 = 0x1070,
33         Vorbis = 0x1080,
34         Flac = 0x1090,
35         Wma1 = 0x10A0,
36         Wma2 = 0x10A1,
37         WmaPro = 0x10A2,
38         WmaLossless = 0x10A3,
39
40         H261 = 0x2010,
41         H263 = 0x2020,
42         H264 = 0x2030,
43         MJpeg = 0x2040,
44         Mpeg1 = 0x2050,
45         Mpeg2 = 0x2060,
46         Mpeg4 = 0x2070,
47         // Hevc = 0x2080,
48         // VP8 = 0x2090,
49         // VP9 = 0x20A0,
50         // VC1 = 0x20B0,
51     }
52 }