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
d997814f
Commit
d997814f
authored
Dec 12, 2014
by
Guillaume BIENKOWSKI
Browse files
Better hinting for soundcard
parent
4292c1fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
coreapi/linphonecore.c
View file @
d997814f
...
...
@@ -3938,10 +3938,10 @@ int _linphone_core_pause_call(LinphoneCore *lc, LinphoneCall *call)
linphone_core_notify_display_warning
(
lc
,
_
(
"Could not pause the call"
));
}
lc
->
current_call
=
NULL
;
linphone_call_set_state
(
call
,
LinphoneCallPausing
,
"Pausing call"
);
linphone_core_notify_display_status
(
lc
,
_
(
"Pausing the current call..."
));
if
(
call
->
audiostream
||
call
->
videostream
)
linphone_call_stop_media_streams
(
call
);
linphone_call_set_state
(
call
,
LinphoneCallPausing
,
"Pausing call"
);
call
->
paused_by_app
=
FALSE
;
return
0
;
}
...
...
@@ -6484,8 +6484,6 @@ int linphone_core_del_call( LinphoneCore *lc, LinphoneCall *call)
}
lc
->
calls
=
the_calls
;
linphone_core_soundcard_hint_check
(
lc
);
return
0
;
}
...
...
mediastreamer2
@
323dcac7
Subproject commit
a9b195ade60a094240700dc6cbe6d72663f2e524
Subproject commit
323dcac7fd1b8f2fc5c2acaa1fe73dc3d4ce15eb
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