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
480e6970
Commit
480e6970
authored
Dec 07, 2008
by
Christian Costa
Committed by
Alexandre Julliard
Dec 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Turn some fixmes into traces.
parent
ffdd34f8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
avisplit.c
dlls/quartz/avisplit.c
+7
-5
No files found.
dlls/quartz/avisplit.c
View file @
480e6970
...
...
@@ -359,8 +359,10 @@ static DWORD WINAPI AVISplitter_thread_reader(LPVOID data)
AVISplitter_SendEndOfFile
(
This
,
streamnumber
);
}
while
(
hr
==
S_OK
);
if
(
hr
!=
S_FALSE
)
FIXME
(
"Thread %u terminated with hr %08x!
\n
"
,
streamnumber
,
hr
);
else
TRACE
(
"Thread %u terminated properly
\n
"
,
streamnumber
);
return
hr
;
}
...
...
@@ -472,7 +474,7 @@ static HRESULT AVISplitter_first_request(LPVOID iface)
args
->
This
=
This
;
args
->
stream
=
x
;
This
->
streams
[
x
].
thread
=
CreateThread
(
NULL
,
0
,
AVISplitter_thread_reader
,
args
,
0
,
&
tid
);
FIXM
E
(
"Created stream %u thread 0x%08x
\n
"
,
x
,
tid
);
TRAC
E
(
"Created stream %u thread 0x%08x
\n
"
,
x
,
tid
);
}
if
(
FAILED
(
hr
))
...
...
@@ -491,7 +493,7 @@ static HRESULT AVISplitter_done_process(LPVOID iface)
{
StreamData
*
stream
=
This
->
streams
+
x
;
FIXM
E
(
"Waiting for %u to terminate
\n
"
,
x
);
TRAC
E
(
"Waiting for %u to terminate
\n
"
,
x
);
/* Make the thread return first */
SetEvent
(
stream
->
packet_queued
);
assert
(
WaitForSingleObject
(
stream
->
thread
,
100000
)
!=
WAIT_TIMEOUT
);
...
...
@@ -504,7 +506,7 @@ static HRESULT AVISplitter_done_process(LPVOID iface)
ResetEvent
(
stream
->
packet_queued
);
}
FIXM
E
(
"All threads are now terminated
\n
"
);
TRAC
E
(
"All threads are now terminated
\n
"
);
return
S_OK
;
}
...
...
@@ -1194,7 +1196,7 @@ static HRESULT AVISplitter_Flush(LPVOID iface)
AVISplitterImpl
*
This
=
(
AVISplitterImpl
*
)
iface
;
DWORD
x
;
ERR
(
"(%p)->()
\n
"
,
This
);
TRACE
(
"(%p)->()
\n
"
,
This
);
for
(
x
=
0
;
x
<
This
->
Parser
.
cStreams
;
++
x
)
{
...
...
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