Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
12c3177e
Commit
12c3177e
authored
Mar 31, 2020
by
Derek Lesho
Committed by
Alexandre Julliard
Apr 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add codecapi.h.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8e1761ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
0 deletions
+57
-0
Makefile.in
include/Makefile.in
+1
-0
codecapi.h
include/codecapi.h
+56
-0
No files found.
include/Makefile.in
View file @
12c3177e
...
...
@@ -61,6 +61,7 @@ SOURCES = \
cmdbas.idl
\
cmdtxt.idl
\
cmnquery.idl
\
codecapi.h
\
colinf.idl
\
colordlg.h
\
comcat.idl
\
...
...
include/codecapi.h
0 → 100644
View file @
12c3177e
/*
* Copyright 2020 Derek Lesho
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __CODECAPI_H
#define __CODECAPI_H
enum
eAVEncH264VProfile
{
eAVEncH264VProfile_unknown
=
0
,
eAVEncH264VProfile_Simple
=
66
,
eAVEncH264VProfile_Base
=
66
,
eAVEncH264VProfile_Main
=
77
,
eAVEncH264VProfile_High
=
100
,
eAVEncH264VProfile_422
=
122
,
eAVEncH264VProfile_High10
=
110
,
eAVEncH264VProfile_444
=
244
,
eAVEncH264VProfile_Extended
=
88
,
};
enum
eAVEncH264VLevel
{
eAVEncH264VLevel1
=
10
,
eAVEncH264VLevel1_b
=
11
,
eAVEncH264VLevel1_1
=
11
,
eAVEncH264VLevel1_2
=
12
,
eAVEncH264VLevel1_3
=
13
,
eAVEncH264VLevel2
=
20
,
eAVEncH264VLevel2_1
=
21
,
eAVEncH264VLevel2_2
=
22
,
eAVEncH264VLevel3
=
30
,
eAVEncH264VLevel3_1
=
31
,
eAVEncH264VLevel3_2
=
32
,
eAVEncH264VLevel4
=
40
,
eAVEncH264VLevel4_1
=
41
,
eAVEncH264VLevel4_2
=
42
,
eAVEncH264VLevel5
=
50
,
eAVEncH264VLevel5_1
=
51
,
eAVEncH264VLevel5_2
=
52
};
#endif
/* __CODECAPI_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment