Commit 935967a4 authored by Richard Oehlinger's avatar Richard Oehlinger Committed by Richard Öhlinger
Browse files

Fix compile failure with gstreamer 0.10

This fixes an compile failure introduced in commit 67c4ec55

.

Fixes: QTBUG-74475
Change-Id: I0dabb72f8b5cdd75336b15515381ff9d9442788f
Reviewed-by: default avatarVaL Doroshchuk <valentyn.doroshchuk@qt.io>
Showing with 5 additions and 0 deletions
......@@ -402,9 +402,14 @@ void QGstreamerPlayerSession::setPipeline(GstElement *pipeline)
if (m_renderer) {
auto it = gst_bin_iterate_sinks(GST_BIN(pipeline));
#if GST_CHECK_VERSION(1,0,0)
GValue data = { 0, 0 };
while (gst_iterator_next (it, &data) == GST_ITERATOR_OK) {
auto child = static_cast<GstElement*>(g_value_get_object(&data));
#else
GstElement *child = nullptr;
while (gst_iterator_next(it, reinterpret_cast<gpointer *>(&child)) == GST_ITERATOR_OK) {
#endif
if (QLatin1String(GST_OBJECT_NAME(child)) == QLatin1String("qtvideosink")) {
m_renderer->setVideoSink(child);
break;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment