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
fe7f78c5
Commit
fe7f78c5
authored
Jul 19, 2013
by
Ghislain MARY
Browse files
Fix compilation on Windows.
parent
60c1b0a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
coreapi/linphonecall.c
View file @
fe7f78c5
...
...
@@ -2507,9 +2507,11 @@ void linphone_call_zoom_video(LinphoneCall* call, float zoom_factor, float* cx,
}
MSVideoSize
linphone_call_get_sent_video_size
(
const
LinphoneCall
*
call
)
{
MSVideoSize
vsize
=
MS_VIDEO_SIZE_UNKNOWN
;
MSVideoSize
vsize
;
VideoStream
*
vstream
;
MS_VIDEO_SIZE_ASSIGN
(
vsize
,
UNKNOWN
);
#ifdef VIDEO_ENABLED
VideoStream
*
vstream
=
call
->
videostream
;
vstream
=
call
->
videostream
;
if
(
vstream
!=
NULL
)
{
vsize
=
video_stream_get_sent_video_size
(
vstream
);
}
...
...
@@ -2518,9 +2520,11 @@ MSVideoSize linphone_call_get_sent_video_size(const LinphoneCall *call) {
}
MSVideoSize
linphone_call_get_received_video_size
(
const
LinphoneCall
*
call
)
{
MSVideoSize
vsize
=
MS_VIDEO_SIZE_UNKNOWN
;
MSVideoSize
vsize
;
VideoStream
*
vstream
;
MS_VIDEO_SIZE_ASSIGN
(
vsize
,
UNKNOWN
);
#ifdef VIDEO_ENABLED
VideoStream
*
vstream
=
call
->
videostream
;
vstream
=
call
->
videostream
;
if
(
vstream
!=
NULL
)
{
vsize
=
video_stream_get_received_video_size
(
vstream
);
}
...
...
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