summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2013-12-02 12:36:14 -0500
committerMike Blumenkrantz <zmike@samsung.com>2013-12-02 12:39:54 -0500
commit5847b5b34a51f44ec8bcdae53e889298d6d9b174 (patch)
tree98833980bc8e80352f73a4834d2e65a82662785d
parentfe045f69891bded3e3429d2dc2033287aaa29e8e (diff)
downloadevas_generic_loaders-5847b5b34a51f44ec8bcdae53e889298d6d9b174.tar.gz
bugfix: unbreak gstreamer plugin
apparently the only way to fix this in 0.10 without newer apis is to not fix it
-rw-r--r--src/bin/gst/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/gst/main.c b/src/bin/gst/main.c
index 140fe02..4ef774a 100644
--- a/src/bin/gst/main.c
+++ b/src/bin/gst/main.c
@@ -78,7 +78,7 @@ _gst_init(const char *filename)
g_error_free (error);
goto gst_shutdown;
}
-
+/* needs gst 1.0+
g_object_get(G_OBJECT(pipeline),
"n-video", &vidstr,
NULL);
@@ -87,7 +87,7 @@ _gst_init(const char *filename)
D("no video stream\n");
goto gst_shutdown;
}
-
+*/
sink = gst_bin_get_by_name (GST_BIN (pipeline), "sink");
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);