Re: quartz Rewrite the avi splitter so that video and sound run in separate threads, with tests
26 Jun
2008
26 Jun
'08
10:49 a.m.
"Maarten Lankhorst" <m.b.lankhorst(a)gmail.com> writes:
+ FIXME("Waiting for %u to terminate\n", x); + /* Make the thread return first */ + SetEvent(stream->packet_queued); + if (WaitForSingleObject(stream->thread, 10000) == WAIT_TIMEOUT) + exit(1);
Don't use exit(). If you absolutely need to kill the whole process you should use ExitProcess, and you have to print an error so that users know what happened. But I doubt you need such a drastic action here. -- Alexandre Julliard julliard(a)winehq.org
6382
Age (days ago)
6382
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard