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
4ccdf3e5
Commit
4ccdf3e5
authored
Nov 27, 2019
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: At least trace the DMUS_FOURCC_TRACK_EXTRAS_CHUNK.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f320ade5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
segment.c
dlls/dmime/segment.c
+5
-1
No files found.
dlls/dmime/segment.c
View file @
4ccdf3e5
...
...
@@ -624,6 +624,7 @@ static HRESULT parse_track_form(IDirectMusicSegment8Impl *This, IStream *stream,
IPersistStream
*
ps
=
NULL
;
IStream
*
clone
;
DMUS_IO_TRACK_HEADER
thdr
;
DMUS_IO_TRACK_EXTRAS_HEADER
txhdr
;
HRESULT
hr
;
TRACE
(
"Parsing track form in %p: %s
\n
"
,
stream
,
debugstr_chunk
(
riff
));
...
...
@@ -654,8 +655,11 @@ static HRESULT parse_track_form(IDirectMusicSegment8Impl *This, IStream *stream,
chunk
.
type
==
thdr
.
fccType
))
break
;
if
(
chunk
.
id
==
DMUS_FOURCC_TRACK_EXTRAS_CHUNK
)
if
(
chunk
.
id
==
DMUS_FOURCC_TRACK_EXTRAS_CHUNK
&&
SUCCEEDED
(
stream_chunk_get_data
(
stream
,
&
chunk
,
&
txhdr
,
sizeof
(
txhdr
))))
{
FIXME
(
"DMUS_IO_TRACK_EXTRAS_HEADER chunk not handled
\n
"
);
TRACE
(
"dwFlags: %#x, dwPriority: %u
\n
"
,
txhdr
.
dwFlags
,
txhdr
.
dwPriority
);
}
}
if
(
hr
!=
S_OK
)
return
hr
==
S_FALSE
?
DMUS_E_TRACK_NOT_FOUND
:
hr
;
...
...
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