[qtmultimedia] don't play with sink sync property. Contributes to JB#30082

I cannot find a reason why someone would flip sync to false and git history
does not say much but in general. Just don't play with it as it can cause
an av desync in case we are using a live source
This commit is contained in:
Mohammed Sameer
2015-06-24 04:42:30 +03:00
committed by Martin Jones
parent 1d2a4045a2
commit 3ae638fdea

View File

@@ -1599,9 +1599,6 @@ void QGstreamerPlayerSession::playbinNotifySource(GObject *o, GParamSpec *p, gpo
qDebug() << "Current source is a non-live source";
#endif
if (self->m_videoSink)
g_object_set(G_OBJECT(self->m_videoSink), "sync", !self->m_isLiveSource, NULL);
gst_object_unref(source);
}