Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
ca0e924d
Commit
ca0e924d
authored
Jan 21, 2016
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
D3D11: fix msg_Dbg format strings
parent
29e9ee76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/video_output/msw/direct3d11.c
modules/video_output/msw/direct3d11.c
+2
-2
No files found.
modules/video_output/msw/direct3d11.c
View file @
ca0e924d
...
...
@@ -1012,7 +1012,7 @@ static int Direct3D11Open(vout_display_t *vd, video_format_t *fmt)
&
i_formatSupport
))
&&
(
i_formatSupport
&
i_quadSupportFlags
)
==
i_quadSupportFlags
)
{
msg_Dbg
(
vd
,
"Using pixel format %s with chroma %4.4s for source %4.4s"
,
output_format
->
name
,
&
output_format
->
fourcc
,
&
i_src_chroma
);
msg_Dbg
(
vd
,
"Using pixel format %s with chroma %4.4s for source %4.4s"
,
output_format
->
name
,
(
char
*
)
&
output_format
->
fourcc
,
(
char
*
)
&
i_src_chroma
);
fmt
->
i_chroma
=
output_format
->
fourcc
;
sys
->
picQuadConfig
.
textureFormat
=
output_format
->
formatTexture
;
sys
->
picQuadConfig
.
resourceFormatYRGB
=
output_format
->
formatY
;
...
...
@@ -1033,7 +1033,7 @@ static int Direct3D11Open(vout_display_t *vd, video_format_t *fmt)
&
i_formatSupport
))
&&
(
i_formatSupport
&
i_quadSupportFlags
)
==
i_quadSupportFlags
)
{
msg_Dbg
(
vd
,
"Using pixel format %s for chroma %4.4s"
,
output_format
->
name
,
&
output_format
->
fourcc
);
msg_Dbg
(
vd
,
"Using pixel format %s for chroma %4.4s"
,
output_format
->
name
,
(
char
*
)
&
output_format
->
fourcc
);
fmt
->
i_chroma
=
output_format
->
fourcc
;
sys
->
picQuadConfig
.
textureFormat
=
output_format
->
formatTexture
;
sys
->
picQuadConfig
.
resourceFormatYRGB
=
output_format
->
formatY
;
...
...
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