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:
Olivier Blin 2012-10-25 16:49:21 +02:00 committed by Thiago Santos
parent f728e424b2
commit cbebb01f23

View file

@ -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));