forked from mirrors/linphone-iphone
fix audio only build
This commit is contained in:
parent
f32d5ebbf7
commit
8f7a1ee5d5
2 changed files with 5 additions and 2 deletions
|
|
@ -433,7 +433,10 @@ static void call_ringing(SalOp *h){
|
|||
}else{
|
||||
/*accept early media */
|
||||
if ((call->audiostream && audio_stream_started(call->audiostream))
|
||||
|| (call->videostream && video_stream_started(call->videostream))) {
|
||||
#ifdef VIDEO_ENABLED
|
||||
|| (call->videostream && video_stream_started(call->videostream))
|
||||
#endif
|
||||
) {
|
||||
/*streams already started */
|
||||
try_early_media_forking(call,md);
|
||||
#ifdef VIDEO_ENABLED
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit e45c262db9413d4f84f8a5b623baf19483667f42
|
||||
Subproject commit a5c3829d290c35c5a7a760019b1b9ad05b1a257c
|
||||
Loading…
Add table
Reference in a new issue