Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e7824f10
Commit
e7824f10
authored
Sep 22, 2023
by
Biswapriyo Nath
Committed by
Alexandre Julliard
Sep 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add ID3D12VideoDecoder in d3d12video.idl.
parent
0635e9e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
0 deletions
+58
-0
Makefile.in
include/Makefile.in
+1
-0
d3d12video.idl
include/d3d12video.idl
+57
-0
No files found.
include/Makefile.in
View file @
e7824f10
...
...
@@ -132,6 +132,7 @@ SOURCES = \
d3d12.idl
\
d3d12sdklayers.idl
\
d3d12shader.idl
\
d3d12video.idl
\
d3d8.h
\
d3d8caps.h
\
d3d8types.h
\
...
...
include/d3d12video.idl
0 → 100644
View file @
e7824f10
/*
*
Copyright
(
C
)
2023
Biswapriyo
Nath
*
*
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
*/
import
"oaidl.idl"
;
import
"ocidl.idl"
;
import
"dxgicommon.idl"
;
import
"d3d12.idl"
;
typedef
enum
D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE
{
D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE_NONE
=
0
,
D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE_FIELD_BASED
=
1
,
}
D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE
;
typedef
enum
D3D12_BITSTREAM_ENCRYPTION_TYPE
{
D3D12_BITSTREAM_ENCRYPTION_TYPE_NONE
=
0
,
}
D3D12_BITSTREAM_ENCRYPTION_TYPE
;
typedef
struct
D3D12_VIDEO_DECODE_CONFIGURATION
{
GUID
DecodeProfile
;
D3D12_BITSTREAM_ENCRYPTION_TYPE
BitstreamEncryption
;
D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE
InterlaceType
;
}
D3D12_VIDEO_DECODE_CONFIGURATION
;
typedef
struct
D3D12_VIDEO_DECODER_DESC
{
UINT
NodeMask
;
D3D12_VIDEO_DECODE_CONFIGURATION
Configuration
;
}
D3D12_VIDEO_DECODER_DESC
;
[
uuid
(
c59b6bdc
-
7720
-
4074
-
a136
-
17
a156037470
),
object
,
local
,
pointer_default
(
unique
)
]
interface
ID3D12VideoDecoder
:
ID3D12Pageable
{
D3D12_VIDEO_DECODER_DESC
GetDesc
()
;
}
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