wmvcore: Support IWMProfile in IWMSyncReader.
[wine.git] / include / codecapi.h
blob9719389b08136e185d6ec89420bf3b74d1e1f177
1 /*
2 * Copyright 2020 Derek Lesho
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __CODECAPI_H
20 #define __CODECAPI_H
22 enum eAVEncH264VProfile
24 eAVEncH264VProfile_unknown = 0,
25 eAVEncH264VProfile_Simple = 66,
26 eAVEncH264VProfile_Base = 66,
27 eAVEncH264VProfile_Main = 77,
28 eAVEncH264VProfile_High = 100,
29 eAVEncH264VProfile_422 = 122,
30 eAVEncH264VProfile_High10 = 110,
31 eAVEncH264VProfile_444 = 244,
32 eAVEncH264VProfile_Extended = 88,
33 eAVEncH264VProfile_ScalableBase = 83,
34 eAVEncH264VProfile_ScalableHigh = 86,
35 eAVEncH264VProfile_MultiviewHigh = 118,
36 eAVEncH264VProfile_StereoHigh = 128,
37 eAVEncH264VProfile_ConstrainedBase = 256,
38 eAVEncH264VProfile_UCConstrainedHigh = 257,
39 eAVEncH264VProfile_UCScalableConstrainedBase = 258,
40 eAVEncH264VProfile_UCScalableConstrainedHigh = 259
43 enum eAVEncH264VLevel
45 eAVEncH264VLevel1 = 10,
46 eAVEncH264VLevel1_b = 11,
47 eAVEncH264VLevel1_1 = 11,
48 eAVEncH264VLevel1_2 = 12,
49 eAVEncH264VLevel1_3 = 13,
50 eAVEncH264VLevel2 = 20,
51 eAVEncH264VLevel2_1 = 21,
52 eAVEncH264VLevel2_2 = 22,
53 eAVEncH264VLevel3 = 30,
54 eAVEncH264VLevel3_1 = 31,
55 eAVEncH264VLevel3_2 = 32,
56 eAVEncH264VLevel4 = 40,
57 eAVEncH264VLevel4_1 = 41,
58 eAVEncH264VLevel4_2 = 42,
59 eAVEncH264VLevel5 = 50,
60 eAVEncH264VLevel5_1 = 51,
61 eAVEncH264VLevel5_2 = 52
64 #endif /* __CODECAPI_H */