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
8484642c
Commit
8484642c
authored
Feb 04, 2015
by
Margaux Clerc
Browse files
Add video ifdef
parent
3e1d142b
Changes
1
Hide whitespace changes
Inline
Side-by-side
coreapi/linphonecall.c
View file @
8484642c
...
...
@@ -3615,7 +3615,9 @@ unsigned long linphone_call_get_native_video_window_id(const LinphoneCall *call)
void
linphone_call_set_native_video_window_id
(
LinphoneCall
*
call
,
unsigned
long
id
)
{
call
->
video_window_id
=
id
;
#ifdef VIDEO_ENABLED
if
(
call
->
videostream
)
{
video_stream_set_native_window_id
(
call
->
videostream
,
id
);
}
#endif
}
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