From d6c101954bfd1ba3427d19be85827fa3d7a47051 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Wed, 12 Sep 2012 18:49:06 +0200 Subject: [PATCH] Add missing properties needed while testing --- gst-sdk/tutorials/android-tutorial-1/jni/tutorial-1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-sdk/tutorials/android-tutorial-1/jni/tutorial-1.c b/gst-sdk/tutorials/android-tutorial-1/jni/tutorial-1.c index 1d42bec80e..79391d280c 100755 --- a/gst-sdk/tutorials/android-tutorial-1/jni/tutorial-1.c +++ b/gst-sdk/tutorials/android-tutorial-1/jni/tutorial-1.c @@ -90,7 +90,7 @@ static void *gst_app_function (void *userdata) { GST_DEBUG ("Creating pipeline in CustomData at %p", data); - data->pipeline = gst_parse_launch ("videotestsrc ! eglglessink", NULL); + data->pipeline = gst_parse_launch ("videotestsrc ! eglglessink force_rendering_slow=1 can_create_window=0", NULL); /* Instruct the bus to emit signals for each received message, and connect to the interesting signals */ bus = gst_element_get_bus (data->pipeline);