From 460cd5fe481fb61716e32baa3374cf9ec66fea3e Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Thu, 5 Jul 2012 13:06:18 +0200 Subject: [PATCH] Fix property name, it should be "video-sink", even though "video_sink" works fine too :/ --- gst-sdk/tutorials/basic-tutorial-13.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-sdk/tutorials/basic-tutorial-13.c b/gst-sdk/tutorials/basic-tutorial-13.c index 710562f..0a2eca0 100644 --- a/gst-sdk/tutorials/basic-tutorial-13.c +++ b/gst-sdk/tutorials/basic-tutorial-13.c @@ -33,7 +33,7 @@ static void send_seek_event (CustomData *data) { if (data->video_sink == NULL) { /* If we have not done so, obtain the sink through which we will send the seek events */ - g_object_get (data->pipeline, "video_sink", &data->video_sink, NULL); + g_object_get (data->pipeline, "video-sink", &data->video_sink, NULL); } /* Send the event */ -- 2.7.4