Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
4b296955
Commit
4b296955
authored
Feb 14, 2015
by
Simon Morlat
Browse files
update ms2, add message processing loop for windows
parent
9b364df8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
mediastreamer2
mediastreamer2
+1
-1
tester/tester.c
tester/tester.c
+9
-0
No files found.
mediastreamer2
@
07a8b569
Subproject commit
a9e3a984485ef8d22394d06fa75497296daa4c66
Subproject commit
07a8b569317d23e9442882be267d6640498a7b5e
tester/tester.c
View file @
4b296955
...
...
@@ -211,6 +211,15 @@ bool_t wait_for_list(MSList* lcs,int* counter,int value,int timeout_ms) {
#endif
linphone_core_iterate
((
LinphoneCore
*
)(
iterator
->
data
));
}
#ifdef WIN32
{
MSG
msg
;
while
(
PeekMessage
(
&
msg
,
NULL
,
0
,
0
,
1
)){
TranslateMessage
(
&
msg
);
DispatchMessage
(
&
msg
);
}
}
#endif
ms_usleep
(
20000
);
}
if
(
counter
&&
*
counter
<
value
)
return
FALSE
;
...
...
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