From 746e77ba3a89003937f387432bcb16db38b046d0 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Thu, 15 Oct 2015 12:56:04 +0200 Subject: [PATCH] enable freeze_on_error by default. It gives much better results with VP8, especially with large images. --- coreapi/linphonecall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/linphonecall.c b/coreapi/linphonecall.c index 3126e9a13..d9cd98eb4 100644 --- a/coreapi/linphonecall.c +++ b/coreapi/linphonecall.c @@ -3187,7 +3187,7 @@ static void linphone_call_start_video_stream(LinphoneCall *call, LinphoneCallSta video_stream_set_direction (call->videostream, dir); ms_message("%s lc rotation:%d\n", __FUNCTION__, lc->device_rotation); video_stream_set_device_rotation(call->videostream, lc->device_rotation); - video_stream_set_freeze_on_error(call->videostream, lp_config_get_int(lc->config, "video", "freeze_on_error", 0)); + video_stream_set_freeze_on_error(call->videostream, lp_config_get_int(lc->config, "video", "freeze_on_error", 1)); if (is_multicast) rtp_session_set_multicast_ttl(call->videostream->ms.sessions.rtp_session,vstream->ttl);