mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
rtsp-media: fix default latency
This commit is contained in:
parent
90f7e851f4
commit
7b5dbb0561
1 changed files with 3 additions and 3 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue