player: notify of media-info update after duration change

This is a follow-up of 98b0802a98

https://bugzilla.gnome.org/show_bug.cgi?id=786201
This commit is contained in:
Philippe Normand 2017-08-14 14:09:33 +01:00
parent 0cd1bf13e8
commit 8a29da8023

View file

@ -1503,6 +1503,10 @@ duration_changed_signal_data_free (DurationChangedSignalData * data)
static void
emit_duration_changed (GstPlayer * self, GstClockTime duration)
{
gboolean updated = FALSE;
g_return_if_fail (self->cached_duration != duration);
GST_DEBUG_OBJECT (self, "Duration changed %" GST_TIME_FORMAT,
GST_TIME_ARGS (duration));
@ -1510,8 +1514,12 @@ emit_duration_changed (GstPlayer * self, GstClockTime duration)
g_mutex_lock (&self->lock);
if (self->media_info) {
self->media_info->duration = duration;
updated = TRUE;
}
g_mutex_unlock (&self->lock);
if (updated) {
emit_media_info_updated_signal (self);
}
if (g_signal_handler_find (self, G_SIGNAL_MATCH_ID,
signals[SIGNAL_DURATION_CHANGED], 0, NULL, NULL, NULL) != 0) {