mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
adaptivedemux2: Fix buffering treshold initialization
Properly initialize the stream default recommended buffering threshold so that a default (10s) value is used until the subclass can provide a proper value Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/2064 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4105>
This commit is contained in:
parent
d6e3a5da3c
commit
bab780f419
1 changed files with 2 additions and 0 deletions
|
@ -76,6 +76,8 @@ gst_adaptive_demux2_stream_init (GstAdaptiveDemux2Stream * stream)
|
||||||
stream->last_ret = GST_FLOW_OK;
|
stream->last_ret = GST_FLOW_OK;
|
||||||
stream->next_input_wakeup_time = GST_CLOCK_STIME_NONE;
|
stream->next_input_wakeup_time = GST_CLOCK_STIME_NONE;
|
||||||
|
|
||||||
|
stream->recommended_buffering_threshold = GST_CLOCK_TIME_NONE;
|
||||||
|
|
||||||
stream->fragment_bitrates =
|
stream->fragment_bitrates =
|
||||||
g_malloc0 (sizeof (guint64) * NUM_LOOKBACK_FRAGMENTS);
|
g_malloc0 (sizeof (guint64) * NUM_LOOKBACK_FRAGMENTS);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue