mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
Fix property name, it should be "video-sink", even though "video_sink" works fine too :/
This commit is contained in:
parent
41bfda7843
commit
460cd5fe48
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue