From 2a7ecd9ca40e9f3206eaaf5188500a22e1b2cd37 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Mon, 27 Sep 2010 14:13:21 +0200 Subject: [PATCH] debug video addon feature --- console/commands.c | 2 +- coreapi/linphonecore.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/console/commands.c b/console/commands.c index 2b41e342f..77d9983c8 100644 --- a/console/commands.c +++ b/console/commands.c @@ -2320,7 +2320,7 @@ static int lpc_cmd_camera(LinphoneCore *lc, char *args){ linphone_call_params_enable_video(ncp,TRUE); linphone_core_update_call(lc,call,ncp); linphone_call_params_destroy (ncp); - linphonec_out("Trying to bring up video stream..."); + linphonec_out("Trying to bring up video stream...\n"); } } if (linphone_call_camera_enabled (call)) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 45af43724..14298990e 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -2163,6 +2163,7 @@ int linphone_core_update_call(LinphoneCore *lc, LinphoneCall *call, LinphoneCall params->has_video,FALSE); if (lc->vtable.display_status) lc->vtable.display_status(lc,_("Modifying call parameters...")); + sal_call_set_local_media_description (call->op,call->localdesc); err=sal_call_update(call->op); return err; }