From: Marc Leeman Date: Mon, 3 Feb 2020 12:30:14 +0000 (+0000) Subject: rtsp-media: fix default latency X-Git-Tag: 1.19.3~495^2~101 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b5dbb0561e26533fe2eedb41ef0a65956f1b839;p=platform%2Fupstream%2Fgstreamer.git rtsp-media: fix default latency --- diff --git a/gst/rtsp-server/rtsp-media.c b/gst/rtsp-server/rtsp-media.c index 260ee6d..c5743dc 100644 --- a/gst/rtsp-server/rtsp-media.c +++ b/gst/rtsp-server/rtsp-media.c @@ -377,7 +377,7 @@ gst_rtsp_media_class_init (GstRTSPMediaClass * klass) g_object_class_install_property (gobject_class, PROP_LATENCY, g_param_spec_uint ("latency", "Latency", "Latency used for receiving media in milliseconds", 0, G_MAXUINT, - DEFAULT_BUFFER_SIZE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); + DEFAULT_LATENCY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_TRANSPORT_MODE, g_param_spec_flags ("transport-mode", "Transport Mode", @@ -2853,14 +2853,14 @@ gst_rtsp_media_seek_trickmode (GstRTSPMedia * media, gboolean unblock = FALSE; /* Handle expected async-done before waiting on next async-done. - * + * * Since the seek further down in code will cause a preroll and * a async-done will be generated it's important to wait on async-done * if that is expected. Otherwise there is the risk that the waiting * for async-done after the seek is detecting the expected async-done * instead of the one that corresponds to the seek. Then execution * continue and act as if the pipeline is prerolled, but it's not. - * + * * During wait_preroll message GST_MESSAGE_ASYNC_DONE will come * and then the state will change from preparing to prepared */ if (priv->expected_async_done) {