tutorials/playback: Fix more occurences of GST_TIME_FORMAT / GST_FORMAT_TIME mixups

https://bugzilla.gnome.org/show_bug.cgi?id=777734
This commit is contained in:
Sebastian Dröge 2017-03-17 12:17:56 +02:00
parent 282851deef
commit 2e29b1e5c3

View file

@ -136,9 +136,9 @@ static gboolean refresh_ui (CustomData *data) {
for (i = (gint)start; i < stop; i++)
graph [i] = '-';
}
if (gst_element_query_position (data->pipeline, GST_TIME_FORMAT, &position) &&
if (gst_element_query_position (data->pipeline, GST_FORMAT_TIME, &position) &&
GST_CLOCK_TIME_IS_VALID (position) &&
gst_element_query_duration (data->pipeline, GST_TIME_FORMAT, &duration) &&
gst_element_query_duration (data->pipeline, GST_FORMAT_TIME, &duration) &&
GST_CLOCK_TIME_IS_VALID (duration)) {
i = (gint)(GRAPH_LENGTH * (double)position / (double)(duration + 1));
graph [i] = data->buffering_level < 100 ? 'X' : '>';