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
6da1c970
Commit
6da1c970
authored
Oct 02, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Oct 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mciavi32: Use the debugstr_fourcc function instead of reimplementing it.
parent
8f02157b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
16 deletions
+4
-16
mmoutput.c
dlls/mciavi32/mmoutput.c
+4
-16
No files found.
dlls/mciavi32/mmoutput.c
View file @
6da1c970
...
...
@@ -28,15 +28,9 @@ static BOOL MCIAVI_GetInfoAudio(WINE_MCIAVI* wma, const MMCKINFO* mmckList, MMCK
{
MMCKINFO
mmckInfo
;
TRACE
(
"ash.fccType='%c%c%c%c'
\n
"
,
LOBYTE
(
LOWORD
(
wma
->
ash_audio
.
fccType
)),
HIBYTE
(
LOWORD
(
wma
->
ash_audio
.
fccType
)),
LOBYTE
(
HIWORD
(
wma
->
ash_audio
.
fccType
)),
HIBYTE
(
HIWORD
(
wma
->
ash_audio
.
fccType
)));
TRACE
(
"ash.fccType=%s
\n
"
,
debugstr_fourcc
(
wma
->
ash_audio
.
fccType
));
if
(
wma
->
ash_audio
.
fccHandler
)
/* not all streams specify a handler */
TRACE
(
"ash.fccHandler='%c%c%c%c'
\n
"
,
LOBYTE
(
LOWORD
(
wma
->
ash_audio
.
fccHandler
)),
HIBYTE
(
LOWORD
(
wma
->
ash_audio
.
fccHandler
)),
LOBYTE
(
HIWORD
(
wma
->
ash_audio
.
fccHandler
)),
HIBYTE
(
HIWORD
(
wma
->
ash_audio
.
fccHandler
)));
TRACE
(
"ash.fccHandler=%s
\n
"
,
debugstr_fourcc
(
wma
->
ash_audio
.
fccHandler
));
else
TRACE
(
"ash.fccHandler=0, no handler specified
\n
"
);
TRACE
(
"ash.dwFlags=%ld
\n
"
,
wma
->
ash_audio
.
dwFlags
);
...
...
@@ -89,14 +83,8 @@ static BOOL MCIAVI_GetInfoVideo(WINE_MCIAVI* wma, const MMCKINFO* mmckList, MMCK
{
MMCKINFO
mmckInfo
;
TRACE
(
"ash.fccType='%c%c%c%c'
\n
"
,
LOBYTE
(
LOWORD
(
wma
->
ash_video
.
fccType
)),
HIBYTE
(
LOWORD
(
wma
->
ash_video
.
fccType
)),
LOBYTE
(
HIWORD
(
wma
->
ash_video
.
fccType
)),
HIBYTE
(
HIWORD
(
wma
->
ash_video
.
fccType
)));
TRACE
(
"ash.fccHandler='%c%c%c%c'
\n
"
,
LOBYTE
(
LOWORD
(
wma
->
ash_video
.
fccHandler
)),
HIBYTE
(
LOWORD
(
wma
->
ash_video
.
fccHandler
)),
LOBYTE
(
HIWORD
(
wma
->
ash_video
.
fccHandler
)),
HIBYTE
(
HIWORD
(
wma
->
ash_video
.
fccHandler
)));
TRACE
(
"ash.fccType=%s
\n
"
,
debugstr_fourcc
(
wma
->
ash_video
.
fccType
));
TRACE
(
"ash.fccHandler=%s
\n
"
,
debugstr_fourcc
(
wma
->
ash_video
.
fccHandler
));
TRACE
(
"ash.dwFlags=%ld
\n
"
,
wma
->
ash_video
.
dwFlags
);
TRACE
(
"ash.wPriority=%d
\n
"
,
wma
->
ash_video
.
wPriority
);
TRACE
(
"ash.wLanguage=%d
\n
"
,
wma
->
ash_video
.
wLanguage
);
...
...
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