Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
5f5a05fb
Commit
5f5a05fb
authored
23 years ago
by
Hidenori Takeshima
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added a missing header.
parent
eaa8df60
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/Makefile.in
+1
-0
1 addition, 0 deletions
include/Makefile.in
include/dvdmedia.h
+99
-0
99 additions, 0 deletions
include/dvdmedia.h
with
100 additions
and
0 deletions
include/Makefile.in
+
1
−
0
View file @
5f5a05fb
...
...
@@ -36,6 +36,7 @@ INSTALLED_INCLUDES = \
dplobby.h
\
dshow.h
\
dsound.h
\
dvdmedia.h
\
errors.h
\
evcode.h
\
guiddef.h
\
...
...
This diff is collapsed.
Click to expand it.
include/dvdmedia.h
0 → 100644
+
99
−
0
View file @
5f5a05fb
/*
* Copyright (C) 2002 Hidenori TAKESHIMA <hidenori@a2.ctktv.ne.jp>
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE_DVDMEDIA_H_
#define __WINE_DVDMEDIA_H_
/* enums. */
enum
AM_MPEG2Level
{
AM_MPEG2Level_Low
=
1
,
AM_MPEG2Level_Main
=
2
,
AM_MPEG2Level_High1440
=
3
,
AM_MPEG2Level_High
=
4
,
};
enum
AM_MPEG2Profile
{
AM_MPEG2Profile_Simple
=
1
,
AM_MPEG2Profile_Main
=
2
,
AM_MPEG2Profile_SNRScalable
=
3
,
AM_MPEG2Profile_SpatiallyScalable
=
4
,
AM_MPEG2Profile_High
=
5
,
};
/* structs. */
typedef
struct
{
RECT
rcSource
;
RECT
rcTarget
;
DWORD
dwBitRate
;
DWORD
dwBitErrorRate
;
REFERENCE_TIME
AvgTimePerFrame
;
DWORD
dwInterlaceFlags
;
DWORD
dwCopyProtectFlags
;
DWORD
dwPictAspectRatioX
;
DWORD
dwPictAspectRatioY
;
DWORD
dwReserved1
;
DWORD
dwReserved2
;
BITMAPINFOHEADER
bmiHeader
;
}
VIDEOINFOHEADER2
;
typedef
struct
{
VIDEOINFOHEADER2
hdr
;
DWORD
dwStartTimeCode
;
DWORD
cbSequenceHeader
;
DWORD
dwProfile
;
DWORD
dwLevel
;
DWORD
dwFlags
;
DWORD
dwSequenceHeader
[
1
];
}
MPEG2VIDEOINFO
;
/* defines. */
#define AMINTERLACE_IsInterlaced 0x00000001
#define AMINTERLACE_1FieldPerSample 0x00000002
#define AMINTERLACE_Field1First 0x00000004
#define AMINTERLACE_FieldPatternMask 0x00000030
#define AMINTERLACE_FieldPatField1Only 0x00000000
#define AMINTERLACE_FieldPatField2Only 0x00000010
#define AMINTERLACE_FieldPatBothRegular 0x00000020
#define AMINTERLACE_FieldPatBothIrregular 0x00000030
#define AMINTERLACE_DisplayModeMask 0x000000C0
#define AMINTERLACE_DisplayModeBobOnly 0x00000000
#define AMINTERLACE_DisplayModeWeaveOnly 0x00000040
#define AMINTERLACE_DisplayModeBobOrWeave 0x00000080
#define AMCOPYPROTECT_RestrictDuplication 0x1
#define AMMPEG2_DoPanScan 0x00000001
#define AMMPEG2_DVDLine21Field1 0x00000002
#define AMMPEG2_DVDLine21Field2 0x00000004
#define AMMPEG2_SourceIsLetterboxed 0x00000008
#define AMMPEG2_FilmCameraMode 0x00000010
#define AMMPEG2_LetterboxAnalogOut 0x00000020
#endif
/* __WINE_DVDMEDIA_H_ */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment