mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
dashdemux: use new gst_mpd_client_get_next_fragment_duration API
This fixes build that has been broken by commit fb9aeac6552021b176a4c4bd07265e02a0b70e0f. gst_mpd_client_get_target_duration has been removed, and gst_mpd_client_get_next_fragment_duration should be used instead.
This commit is contained in:
parent
f728e424b2
commit
cbebb01f23
1 changed files with 1 additions and 1 deletions
|
@ -1000,7 +1000,7 @@ gst_dash_demux_stream_loop (GstDashDemux * demux)
|
|||
/* Wait for the duration of a fragment before resuming this task */
|
||||
g_get_current_time (&demux->next_push);
|
||||
g_time_val_add (&demux->next_push,
|
||||
gst_mpd_client_get_target_duration (demux->client)
|
||||
gst_mpd_client_get_next_fragment_duration (demux->client)
|
||||
/ GST_SECOND * G_USEC_PER_SEC);
|
||||
GST_DEBUG_OBJECT (demux, "Next push scheduled at %s",
|
||||
g_time_val_to_iso8601 (&demux->next_push));
|
||||
|
|
Loading…
Reference in a new issue