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
ae77ddaf
Commit
ae77ddaf
authored
Oct 04, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Oct 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Rename debugstr_fourcc to mf_debugstr_fourcc.
parent
17d9841d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
buffer.c
dlls/mfplat/buffer.c
+1
-1
mediatype.c
dlls/mfplat/mediatype.c
+2
-2
mfplat_private.h
dlls/mfplat/mfplat_private.h
+1
-1
No files found.
dlls/mfplat/buffer.c
View file @
ae77ddaf
...
@@ -1627,7 +1627,7 @@ HRESULT WINAPI MFCreateAlignedMemoryBuffer(DWORD max_length, DWORD alignment, IM
...
@@ -1627,7 +1627,7 @@ HRESULT WINAPI MFCreateAlignedMemoryBuffer(DWORD max_length, DWORD alignment, IM
*/
*/
HRESULT
WINAPI
MFCreate2DMediaBuffer
(
DWORD
width
,
DWORD
height
,
DWORD
fourcc
,
BOOL
bottom_up
,
IMFMediaBuffer
**
buffer
)
HRESULT
WINAPI
MFCreate2DMediaBuffer
(
DWORD
width
,
DWORD
height
,
DWORD
fourcc
,
BOOL
bottom_up
,
IMFMediaBuffer
**
buffer
)
{
{
TRACE
(
"%lu, %lu, %s, %d, %p.
\n
"
,
width
,
height
,
debugstr_fourcc
(
fourcc
),
bottom_up
,
buffer
);
TRACE
(
"%lu, %lu, %s, %d, %p.
\n
"
,
width
,
height
,
mf_
debugstr_fourcc
(
fourcc
),
bottom_up
,
buffer
);
return
create_2d_buffer
(
width
,
height
,
fourcc
,
bottom_up
,
buffer
);
return
create_2d_buffer
(
width
,
height
,
fourcc
,
bottom_up
,
buffer
);
}
}
...
...
dlls/mfplat/mediatype.c
View file @
ae77ddaf
...
@@ -2696,7 +2696,7 @@ HRESULT WINAPI MFGetStrideForBitmapInfoHeader(DWORD fourcc, DWORD width, LONG *s
...
@@ -2696,7 +2696,7 @@ HRESULT WINAPI MFGetStrideForBitmapInfoHeader(DWORD fourcc, DWORD width, LONG *s
struct
uncompressed_video_format
*
format
;
struct
uncompressed_video_format
*
format
;
GUID
subtype
;
GUID
subtype
;
TRACE
(
"%s, %lu, %p.
\n
"
,
debugstr_fourcc
(
fourcc
),
width
,
stride
);
TRACE
(
"%s, %lu, %p.
\n
"
,
mf_
debugstr_fourcc
(
fourcc
),
width
,
stride
);
memcpy
(
&
subtype
,
&
MFVideoFormat_Base
,
sizeof
(
subtype
));
memcpy
(
&
subtype
,
&
MFVideoFormat_Base
,
sizeof
(
subtype
));
subtype
.
Data1
=
fourcc
;
subtype
.
Data1
=
fourcc
;
...
@@ -2766,7 +2766,7 @@ HRESULT WINAPI MFGetPlaneSize(DWORD fourcc, DWORD width, DWORD height, DWORD *si
...
@@ -2766,7 +2766,7 @@ HRESULT WINAPI MFGetPlaneSize(DWORD fourcc, DWORD width, DWORD height, DWORD *si
unsigned
int
stride
;
unsigned
int
stride
;
GUID
subtype
;
GUID
subtype
;
TRACE
(
"%s, %lu, %lu, %p.
\n
"
,
debugstr_fourcc
(
fourcc
),
width
,
height
,
size
);
TRACE
(
"%s, %lu, %lu, %p.
\n
"
,
mf_
debugstr_fourcc
(
fourcc
),
width
,
height
,
size
);
memcpy
(
&
subtype
,
&
MFVideoFormat_Base
,
sizeof
(
subtype
));
memcpy
(
&
subtype
,
&
MFVideoFormat_Base
,
sizeof
(
subtype
));
subtype
.
Data1
=
fourcc
;
subtype
.
Data1
=
fourcc
;
...
...
dlls/mfplat/mfplat_private.h
View file @
ae77ddaf
...
@@ -148,7 +148,7 @@ static inline const char *debugstr_propvar(const PROPVARIANT *v)
...
@@ -148,7 +148,7 @@ static inline const char *debugstr_propvar(const PROPVARIANT *v)
}
}
}
}
static
inline
const
char
*
debugstr_fourcc
(
DWORD
format
)
static
inline
const
char
*
mf_
debugstr_fourcc
(
DWORD
format
)
{
{
static
const
struct
format_name
static
const
struct
format_name
{
{
...
...
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