player: Only report the initial duration if the query was successful

This commit is contained in:
Sebastian Dröge 2016-09-26 13:26:36 +03:00
parent 214a041e13
commit fa31ea7ac3

View file

@ -1590,8 +1590,10 @@ state_changed_cb (G_GNUC_UNUSED GstBus * bus, GstMessage * msg,
}
check_video_dimensions_changed (self);
gst_element_query_duration (self->playbin, GST_FORMAT_TIME, &duration);
emit_duration_changed (self, duration);
if (gst_element_query_duration (self->playbin, GST_FORMAT_TIME,
&duration)) {
emit_duration_changed (self, duration);
}
}
if (new_state == GST_STATE_PAUSED