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
15b46d5b
Commit
15b46d5b
authored
Sep 26, 2023
by
Biswapriyo Nath
Committed by
Alexandre Julliard
Sep 26, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add ID3D12VideoDevice3 in d3d12video.idl.
parent
c965dbae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
0 deletions
+43
-0
d3d12video.idl
include/d3d12video.idl
+43
-0
No files found.
include/d3d12video.idl
View file @
15b46d5b
...
...
@@ -687,6 +687,17 @@ typedef enum D3D12_VIDEO_ENCODER_HEAP_FLAGS
}
D3D12_VIDEO_ENCODER_HEAP_FLAGS
;
cpp_quote
(
"DEFINE_ENUM_FLAG_OPERATORS(D3D12_VIDEO_ENCODER_HEAP_FLAGS);"
)
typedef
struct
D3D12_VIDEO_ENCODER_HEAP_DESC
{
UINT
NodeMask
;
D3D12_VIDEO_ENCODER_HEAP_FLAGS
Flags
;
D3D12_VIDEO_ENCODER_CODEC
EncodeCodec
;
D3D12_VIDEO_ENCODER_PROFILE_DESC
EncodeProfile
;
D3D12_VIDEO_ENCODER_LEVEL_SETTING
EncodeLevel
;
UINT
ResolutionsListCount
;
const
D3D12_VIDEO_ENCODER_PICTURE_RESOLUTION_DESC
*
pResolutionList
;
}
D3D12_VIDEO_ENCODER_HEAP_DESC
;
typedef
enum
D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODES
{
D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_0_ALL_LUMA_CHROMA_SLICE_BLOCK_EDGES_ALWAYS_FILTERED
=
0
,
...
...
@@ -782,6 +793,17 @@ typedef enum D3D12_VIDEO_ENCODER_FLAGS
}
D3D12_VIDEO_ENCODER_FLAGS
;
cpp_quote
(
"DEFINE_ENUM_FLAG_OPERATORS(D3D12_VIDEO_ENCODER_FLAGS);"
)
typedef
struct
D3D12_VIDEO_ENCODER_DESC
{
UINT
NodeMask
;
D3D12_VIDEO_ENCODER_FLAGS
Flags
;
D3D12_VIDEO_ENCODER_CODEC
EncodeCodec
;
D3D12_VIDEO_ENCODER_PROFILE_DESC
EncodeProfile
;
DXGI_FORMAT
InputFormat
;
D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION
CodecConfiguration
;
D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE
MaxMotionEstimationPrecision
;
}
D3D12_VIDEO_ENCODER_DESC
;
[
uuid
(
2
e0d212d
-
8
df9
-
44
a6
-
a770
-
bb289b182737
),
object
,
...
...
@@ -838,3 +860,24 @@ interface ID3D12VideoEncoderHeap : ID3D12Pageable
[
out
]
D3D12_VIDEO_ENCODER_PICTURE_RESOLUTION_DESC
*
resolution_list
)
;
}
[
uuid
(
4243
adb4
-
3
a32
-
4666
-
973
c
-
0
ccc5625dc44
),
object
,
local
,
pointer_default
(
unique
)
]
interface
ID3D12VideoDevice3
:
ID3D12VideoDevice2
{
HRESULT
CreateVideoEncoder
(
[
in
]
const
D3D12_VIDEO_ENCODER_DESC
*
desc
,
[
in
]
REFIID
riid
,
[
out
]
void
**
video_encoder
)
;
HRESULT
CreateVideoEncoderHeap
(
[
in
]
const
D3D12_VIDEO_ENCODER_HEAP_DESC
*
desc
,
[
in
]
REFIID
riid
,
[
out
]
void
**
video_encoder_heap
)
;
}
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