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
bc5ce279
Commit
bc5ce279
authored
Jul 20, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Jul 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
22ff8c9b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
sync.c
dlls/kernel32/tests/sync.c
+3
-3
avisplit.c
dlls/quartz/avisplit.c
+2
-2
avisplitter.c
dlls/quartz/tests/avisplitter.c
+1
-1
No files found.
dlls/kernel32/tests/sync.c
View file @
bc5ce279
...
...
@@ -549,7 +549,7 @@ static void test_timer_queue(void)
HANDLE
e
;
BOOL
ret
;
/* Test async
ronous deletion of the queue.
*/
/* Test async
hronous deletion of the queue.
*/
q
=
CreateTimerQueue
();
todo_wine
ok
(
q
!=
NULL
,
"CreateTimerQueue
\n
"
);
...
...
@@ -560,7 +560,7 @@ static void test_timer_queue(void)
todo_wine
ok
(
GetLastError
()
==
ERROR_IO_PENDING
,
"DeleteTimerQueueEx
\n
"
);
/* Test sync
ronous deletion of the queue and running timers.
*/
/* Test sync
hronous deletion of the queue and running timers.
*/
q
=
CreateTimerQueue
();
todo_wine
ok
(
q
!=
NULL
,
"CreateTimerQueue
\n
"
);
...
...
@@ -614,7 +614,7 @@ static void test_timer_queue(void)
todo_wine
ok
(
n5
==
1
,
"Timer callback 5
\n
"
);
/* Test sync
ronous deletion of the queue with event trigger.
*/
/* Test sync
hronous deletion of the queue with event trigger.
*/
e
=
CreateEvent
(
NULL
,
TRUE
,
FALSE
,
NULL
);
if
(
!
e
)
{
...
...
dlls/quartz/avisplit.c
View file @
bc5ce279
...
...
@@ -20,7 +20,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
/* FIXME:
* - Reference leaks, if they
are still existan
t
* - Reference leaks, if they
still exis
t
* - Files without an index are not handled correctly yet.
* - When stopping/starting, a sample is lost. This should be compensated by
* keeping track of previous index/position.
...
...
@@ -410,7 +410,7 @@ static HRESULT AVISplitter_first_request(LPVOID iface)
stream
->
pos_next
=
stream
->
pos
;
stream
->
index_next
=
stream
->
index
;
/* There should be a
a
packet queued from AVISplitter_next_request last time
/* There should be a packet queued from AVISplitter_next_request last time
* It needs to be done now because this is the only way to ensure that every
* stream will have at least 1 packet processed
* If this is done after the threads start it could go all awkward and we
...
...
dlls/quartz/tests/avisplitter.c
View file @
bc5ce279
...
...
@@ -177,7 +177,7 @@ static const char afile[] = "test.avi";
/* This test doesn't use the quartz filtergraph because it makes it impossible
* to be certain that a thread is really one owned by the avi splitter
* A lot of the decoder filters will also have their own thread, and windows'
* filtergraph has a sep
e
rate thread for start/stop/seeking requests.
* filtergraph has a sep
a
rate thread for start/stop/seeking requests.
* By avoiding the filtergraph all together and connecting streams directly to
* the null renderer I am sure that this is not the case here.
*/
...
...
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