waylandsink: Use wl_scaler/wl_viewport to scale the surface in the compositor/hardware
[platform/upstream/gstreamer.git] / ext / wayland / gstwaylandsink.c
1 /* GStreamer Wayland video sink
2  *
3  * Copyright (C) 2011 Intel Corporation
4  * Copyright (C) 2011 Sreerenj Balachandran <sreerenj.balachandran@intel.com>
5  * Copyright (C) 2012 Wim Taymans <wim.taymans@gmail.com>
6  * Copyright (C) 2014 Collabora Ltd.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  * Boston, MA 02110-1301 USA.
22  */
23
24 /**
25  * SECTION:element-waylandsink
26  *
27  *  The waylandsink is creating its own window and render the decoded video frames to that.
28  *  Setup the Wayland environment as described in
29  *  <ulink url="http://wayland.freedesktop.org/building.html">Wayland</ulink> home page.
30  *  The current implementaion is based on weston compositor.
31  *
32  * <refsect2>
33  * <title>Example pipelines</title>
34  * |[
35  * gst-launch -v videotestsrc ! waylandsink
36  * ]| test the video rendering in wayland
37  * </refsect2>
38  */
39
40 #ifdef HAVE_CONFIG_H
41 #include <config.h>
42 #endif
43
44 #include "gstwaylandsink.h"
45 #include "wlvideoformat.h"
46 #include "waylandpool.h"
47
48 #include <gst/wayland/wayland.h>
49 #include <gst/video/videooverlay.h>
50
51 /* signals */
52 enum
53 {
54   SIGNAL_0,
55   LAST_SIGNAL
56 };
57
58 /* Properties */
59 enum
60 {
61   PROP_0,
62   PROP_DISPLAY
63 };
64
65 GST_DEBUG_CATEGORY (gstwayland_debug);
66 #define GST_CAT_DEFAULT gstwayland_debug
67
68 #if G_BYTE_ORDER == G_BIG_ENDIAN
69 #define CAPS "{xRGB, ARGB}"
70 #else
71 #define CAPS "{BGRx, BGRA}"
72 #endif
73
74 static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
75     GST_PAD_SINK,
76     GST_PAD_ALWAYS,
77     GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE (CAPS))
78     );
79
80 static void gst_wayland_sink_get_property (GObject * object,
81     guint prop_id, GValue * value, GParamSpec * pspec);
82 static void gst_wayland_sink_set_property (GObject * object,
83     guint prop_id, const GValue * value, GParamSpec * pspec);
84 static void gst_wayland_sink_finalize (GObject * object);
85
86 static GstStateChangeReturn gst_wayland_sink_change_state (GstElement * element,
87     GstStateChange transition);
88
89 static GstCaps *gst_wayland_sink_get_caps (GstBaseSink * bsink,
90     GstCaps * filter);
91 static gboolean gst_wayland_sink_set_caps (GstBaseSink * bsink, GstCaps * caps);
92 static gboolean gst_wayland_sink_preroll (GstBaseSink * bsink,
93     GstBuffer * buffer);
94 static gboolean
95 gst_wayland_sink_propose_allocation (GstBaseSink * bsink, GstQuery * query);
96 static gboolean gst_wayland_sink_render (GstBaseSink * bsink,
97     GstBuffer * buffer);
98
99 /* VideoOverlay interface */
100 static void gst_wayland_sink_videooverlay_init (GstVideoOverlayInterface *
101     iface);
102 static void gst_wayland_sink_set_window_handle (GstVideoOverlay * overlay,
103     guintptr handle);
104 static void gst_wayland_sink_expose (GstVideoOverlay * overlay);
105
106 /* WaylandVideo interface */
107 static void gst_wayland_sink_waylandvideo_init (GstWaylandVideoInterface *
108     iface);
109 static void gst_wayland_sink_set_surface_size (GstWaylandVideo * video,
110     gint w, gint h);
111 static void gst_wayland_sink_pause_rendering (GstWaylandVideo * video);
112 static void gst_wayland_sink_resume_rendering (GstWaylandVideo * video);
113
114 #define gst_wayland_sink_parent_class parent_class
115 G_DEFINE_TYPE_WITH_CODE (GstWaylandSink, gst_wayland_sink, GST_TYPE_VIDEO_SINK,
116     G_IMPLEMENT_INTERFACE (GST_TYPE_VIDEO_OVERLAY,
117         gst_wayland_sink_videooverlay_init)
118     G_IMPLEMENT_INTERFACE (GST_TYPE_WAYLAND_VIDEO,
119         gst_wayland_sink_waylandvideo_init));
120
121 static void
122 gst_wayland_sink_class_init (GstWaylandSinkClass * klass)
123 {
124   GObjectClass *gobject_class;
125   GstElementClass *gstelement_class;
126   GstBaseSinkClass *gstbasesink_class;
127
128   gobject_class = (GObjectClass *) klass;
129   gstelement_class = (GstElementClass *) klass;
130   gstbasesink_class = (GstBaseSinkClass *) klass;
131
132   gobject_class->set_property = gst_wayland_sink_set_property;
133   gobject_class->get_property = gst_wayland_sink_get_property;
134   gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_wayland_sink_finalize);
135
136   gst_element_class_add_pad_template (gstelement_class,
137       gst_static_pad_template_get (&sink_template));
138
139   gst_element_class_set_static_metadata (gstelement_class,
140       "wayland video sink", "Sink/Video",
141       "Output to wayland surface",
142       "Sreerenj Balachandran <sreerenj.balachandran@intel.com>");
143
144   gstelement_class->change_state =
145       GST_DEBUG_FUNCPTR (gst_wayland_sink_change_state);
146
147   gstbasesink_class->get_caps = GST_DEBUG_FUNCPTR (gst_wayland_sink_get_caps);
148   gstbasesink_class->set_caps = GST_DEBUG_FUNCPTR (gst_wayland_sink_set_caps);
149   gstbasesink_class->preroll = GST_DEBUG_FUNCPTR (gst_wayland_sink_preroll);
150   gstbasesink_class->propose_allocation =
151       GST_DEBUG_FUNCPTR (gst_wayland_sink_propose_allocation);
152   gstbasesink_class->render = GST_DEBUG_FUNCPTR (gst_wayland_sink_render);
153
154   g_object_class_install_property (gobject_class, PROP_DISPLAY,
155       g_param_spec_string ("display", "Wayland Display name", "Wayland "
156           "display name to connect to, if not supplied with GstVideoOverlay",
157           NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
158 }
159
160 static void
161 gst_wayland_sink_init (GstWaylandSink * sink)
162 {
163   g_cond_init (&sink->render_cond);
164 }
165
166 static void
167 gst_wayland_sink_get_property (GObject * object,
168     guint prop_id, GValue * value, GParamSpec * pspec)
169 {
170   GstWaylandSink *sink = GST_WAYLAND_SINK (object);
171
172   switch (prop_id) {
173     case PROP_DISPLAY:
174       g_value_set_string (value, sink->display_name);
175       break;
176     default:
177       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
178       break;
179   }
180 }
181
182 static void
183 gst_wayland_sink_set_property (GObject * object,
184     guint prop_id, const GValue * value, GParamSpec * pspec)
185 {
186   GstWaylandSink *sink = GST_WAYLAND_SINK (object);
187
188   switch (prop_id) {
189     case PROP_DISPLAY:
190       sink->display_name = g_value_dup_string (value);
191       break;
192     default:
193       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
194       break;
195   }
196 }
197
198 static void
199 gst_wayland_sink_finalize (GObject * object)
200 {
201   GstWaylandSink *sink = GST_WAYLAND_SINK (object);
202
203   GST_DEBUG_OBJECT (sink, "Finalizing the sink..");
204
205   if (sink->display) {
206     /* see comment about this call in gst_wayland_sink_change_state() */
207     gst_wayland_compositor_release_all_buffers (GST_WAYLAND_BUFFER_POOL
208         (sink->pool));
209     g_object_unref (sink->display);
210   }
211   if (sink->window)
212     g_object_unref (sink->window);
213   if (sink->pool)
214     gst_object_unref (sink->pool);
215
216   if (sink->display_name)
217     g_free (sink->display_name);
218
219   g_cond_clear (&sink->render_cond);
220
221   G_OBJECT_CLASS (parent_class)->finalize (object);
222 }
223
224 static GstStateChangeReturn
225 gst_wayland_sink_change_state (GstElement * element, GstStateChange transition)
226 {
227   GstWaylandSink *sink = GST_WAYLAND_SINK (element);
228   GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
229
230   switch (transition) {
231     case GST_STATE_CHANGE_READY_TO_PAUSED:
232       if (!sink->window)
233         gst_video_overlay_prepare_window_handle (GST_VIDEO_OVERLAY (sink));
234       break;
235     default:
236       break;
237   }
238
239   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
240   if (ret == GST_STATE_CHANGE_FAILURE)
241     return ret;
242
243   switch (transition) {
244     case GST_STATE_CHANGE_PAUSED_TO_READY:
245       if (gst_wl_window_is_toplevel (sink->window)) {
246         /* Force all buffers to return to the pool, regardless of
247          * whether the compositor has released them or not. We are
248          * going to kill the display, so we need to return all buffers
249          * to be destroyed before this happens.
250          * Note that this is done here instead of the pool destructor
251          * because the buffers hold a reference to the pool. Also,
252          * the buffers can only be unref'ed from the display's event loop
253          * and the pool holds a reference to the display. If we drop
254          * our references here, when the compositor releases the buffers,
255          * they will be unref'ed from the event loop thread, which will
256          * unref the pool and therefore the display, which will try to
257          * stop the thread from within itself and cause a deadlock.
258          */
259         gst_wayland_compositor_release_all_buffers (GST_WAYLAND_BUFFER_POOL
260             (sink->pool));
261         g_clear_object (&sink->window);
262         g_clear_object (&sink->display);
263         g_clear_object (&sink->pool);
264       }
265       break;
266     default:
267       break;
268   }
269
270   return ret;
271 }
272
273 static GstCaps *
274 gst_wayland_sink_get_caps (GstBaseSink * bsink, GstCaps * filter)
275 {
276   GstWaylandSink *sink;
277   GstCaps *caps;
278
279   sink = GST_WAYLAND_SINK (bsink);
280
281   caps = gst_pad_get_pad_template_caps (GST_VIDEO_SINK_PAD (sink));
282
283   if (filter) {
284     GstCaps *intersection;
285
286     intersection =
287         gst_caps_intersect_full (filter, caps, GST_CAPS_INTERSECT_FIRST);
288     gst_caps_unref (caps);
289     caps = intersection;
290   }
291   return caps;
292 }
293
294 static gboolean
295 gst_wayland_sink_set_caps (GstBaseSink * bsink, GstCaps * caps)
296 {
297   GstWaylandSink *sink;
298   GstBufferPool *newpool;
299   GstVideoInfo info;
300   GError *error = NULL;
301   enum wl_shm_format format;
302   GArray *formats;
303   gint i;
304   GstStructure *structure;
305   static GstAllocationParams params = { 0, 0, 0, 15, };
306
307   sink = GST_WAYLAND_SINK (bsink);
308   GST_OBJECT_LOCK (sink);
309
310   GST_DEBUG_OBJECT (sink, "set caps %" GST_PTR_FORMAT, caps);
311
312   /* extract info from caps */
313   if (!gst_video_info_from_caps (&info, caps))
314     goto invalid_format;
315
316   format = gst_video_format_to_wayland_format (GST_VIDEO_INFO_FORMAT (&info));
317   if (format == -1)
318     goto invalid_format;
319
320   /* store the video size */
321   sink->video_width = info.width;
322   sink->video_height = info.height;
323
324   /* create the output window if needed */
325   if (!sink->window) {
326     if (!sink->display)
327       sink->display = gst_wl_display_new (sink->display_name, &error);
328
329     if (sink->display == NULL)
330       goto display_failed;
331
332     sink->window = gst_wl_window_new_toplevel (sink->display, sink->video_width,
333         sink->video_height);
334   }
335
336   /* verify we support the requested format */
337   formats = sink->display->formats;
338   for (i = 0; i < formats->len; i++) {
339     if (g_array_index (formats, uint32_t, i) == format)
340       break;
341   }
342
343   if (i >= formats->len)
344     goto unsupported_format;
345
346   /* create a new pool for the new configuration */
347   newpool = gst_wayland_buffer_pool_new (sink->display);
348   if (!newpool)
349     goto pool_failed;
350
351   structure = gst_buffer_pool_get_config (newpool);
352   gst_buffer_pool_config_set_params (structure, caps, info.size, 2, 0);
353   gst_buffer_pool_config_set_allocator (structure, NULL, &params);
354   if (!gst_buffer_pool_set_config (newpool, structure))
355     goto config_failed;
356
357   gst_object_replace ((GstObject **) & sink->pool, (GstObject *) newpool);
358   gst_object_unref (newpool);
359
360   GST_OBJECT_UNLOCK (sink);
361   return TRUE;
362
363 invalid_format:
364   {
365     GST_DEBUG_OBJECT (sink,
366         "Could not locate image format from caps %" GST_PTR_FORMAT, caps);
367     goto failure;
368   }
369 display_failed:
370   {
371     GST_ELEMENT_ERROR (sink, RESOURCE, OPEN_READ_WRITE,
372         ("Could not initialise Wayland output"),
373         ("Failed to create GstWlDisplay: '%s'", error->message));
374     g_error_free (error);
375     goto failure;
376   }
377 unsupported_format:
378   {
379     GST_DEBUG_OBJECT (sink, "Format %s is not available on the display",
380         gst_wayland_format_to_string (format));
381     goto failure;
382   }
383 pool_failed:
384   {
385     GST_DEBUG_OBJECT (sink, "Failed to create new pool");
386     goto failure;
387   }
388 config_failed:
389   {
390     GST_DEBUG_OBJECT (bsink, "failed setting config");
391     goto failure;
392   }
393 failure:
394   {
395     GST_OBJECT_UNLOCK (sink);
396     return FALSE;
397   }
398 }
399
400 static gboolean
401 gst_wayland_sink_propose_allocation (GstBaseSink * bsink, GstQuery * query)
402 {
403   GstWaylandSink *sink = GST_WAYLAND_SINK (bsink);
404   GstBufferPool *pool = NULL;
405   GstStructure *config;
406   GstCaps *caps;
407   guint size;
408   gboolean need_pool;
409
410   gst_query_parse_allocation (query, &caps, &need_pool);
411
412   if (caps == NULL)
413     goto no_caps;
414
415   if (sink->pool)
416     pool = gst_object_ref (sink->pool);
417
418   if (pool != NULL) {
419     GstCaps *pcaps;
420
421     /* we had a pool, check caps */
422     config = gst_buffer_pool_get_config (pool);
423     gst_buffer_pool_config_get_params (config, &pcaps, &size, NULL, NULL);
424
425     if (!gst_caps_is_equal (caps, pcaps)) {
426       /* different caps, we can't use this pool */
427       gst_object_unref (pool);
428       pool = NULL;
429     }
430     gst_structure_free (config);
431   }
432
433   if (pool == NULL && need_pool) {
434     GstVideoInfo info;
435
436     if (!gst_video_info_from_caps (&info, caps))
437       goto invalid_caps;
438
439     GST_DEBUG_OBJECT (sink, "create new pool");
440     pool = gst_wayland_buffer_pool_new (sink->display);
441
442     /* the normal size of a frame */
443     size = info.size;
444
445     config = gst_buffer_pool_get_config (pool);
446     gst_buffer_pool_config_set_params (config, caps, size, 2, 0);
447     if (!gst_buffer_pool_set_config (pool, config))
448       goto config_failed;
449   }
450   if (pool) {
451     gst_query_add_allocation_pool (query, pool, size, 2, 0);
452     gst_object_unref (pool);
453   }
454
455   return TRUE;
456
457   /* ERRORS */
458 no_caps:
459   {
460     GST_DEBUG_OBJECT (bsink, "no caps specified");
461     return FALSE;
462   }
463 invalid_caps:
464   {
465     GST_DEBUG_OBJECT (bsink, "invalid caps specified");
466     return FALSE;
467   }
468 config_failed:
469   {
470     GST_DEBUG_OBJECT (bsink, "failed setting config");
471     gst_object_unref (pool);
472     return FALSE;
473   }
474 }
475
476 static GstFlowReturn
477 gst_wayland_sink_preroll (GstBaseSink * bsink, GstBuffer * buffer)
478 {
479   GST_DEBUG_OBJECT (bsink, "preroll buffer %p", buffer);
480   return gst_wayland_sink_render (bsink, buffer);
481 }
482
483 static void
484 frame_redraw_callback (void *data, struct wl_callback *callback, uint32_t time)
485 {
486   GstWaylandSink *sink = data;
487
488   GST_LOG ("frame_redraw_cb");
489
490   g_atomic_int_set (&sink->redraw_pending, FALSE);
491   wl_callback_destroy (callback);
492 }
493
494 static const struct wl_callback_listener frame_callback_listener = {
495   frame_redraw_callback
496 };
497
498 static GstFlowReturn
499 gst_wayland_sink_render (GstBaseSink * bsink, GstBuffer * buffer)
500 {
501   GstWaylandSink *sink = GST_WAYLAND_SINK (bsink);
502   GstVideoRectangle src, dst, res;
503   GstBuffer *to_render;
504   GstWlMeta *meta;
505   GstFlowReturn ret = GST_FLOW_OK;
506   struct wl_surface *surface;
507   struct wl_callback *callback;
508
509   GST_OBJECT_LOCK (sink);
510
511   GST_LOG_OBJECT (sink, "render buffer %p", buffer);
512
513   /* surface is resizing - drop buffers until finished */
514   if (sink->drawing_frozen)
515     goto done;
516
517   /* drop buffers until we get a frame callback */
518   if (g_atomic_int_get (&sink->redraw_pending) == TRUE)
519     goto done;
520
521   meta = gst_buffer_get_wl_meta (buffer);
522
523   if (meta && meta->pool->display == sink->display) {
524     GST_LOG_OBJECT (sink, "buffer %p from our pool, writing directly", buffer);
525     to_render = buffer;
526   } else {
527     GstMapInfo src;
528     GST_LOG_OBJECT (sink, "buffer %p not from our pool, copying", buffer);
529
530     if (!sink->pool)
531       goto no_pool;
532
533     if (!gst_buffer_pool_set_active (sink->pool, TRUE))
534       goto activate_failed;
535
536     ret = gst_buffer_pool_acquire_buffer (sink->pool, &to_render, NULL);
537     if (ret != GST_FLOW_OK)
538       goto no_buffer;
539
540     gst_buffer_map (buffer, &src, GST_MAP_READ);
541     gst_buffer_fill (to_render, 0, src.data, src.size);
542     gst_buffer_unmap (buffer, &src);
543
544     meta = gst_buffer_get_wl_meta (to_render);
545   }
546
547   src.w = sink->video_width;
548   src.h = sink->video_height;
549   dst.w = sink->window->width;
550   dst.h = sink->window->height;
551
552   gst_video_sink_center_rect (src, dst, &res, FALSE);
553
554   surface = gst_wl_window_get_wl_surface (sink->window);
555
556   /* Here we essentially add a reference to the buffer. This represents
557    * the fact that the compositor is using the buffer and it should
558    * not return back to the pool and be reused until the compositor
559    * releases it. The release is handled internally in the pool */
560   gst_wayland_compositor_acquire_buffer (meta->pool, to_render);
561
562   g_atomic_int_set (&sink->redraw_pending, TRUE);
563
564   wl_surface_attach (surface, meta->wbuffer, 0, 0);
565   wl_surface_damage (surface, 0, 0, res.w, res.h);
566
567   wl_viewport_set (sink->window->viewport, wl_fixed_from_int (0),
568       wl_fixed_from_int (0), wl_fixed_from_int (src.w),
569       wl_fixed_from_int (src.h), res.w, res.h);
570
571   callback = wl_surface_frame (surface);
572   wl_callback_add_listener (callback, &frame_callback_listener, sink);
573   wl_surface_commit (surface);
574   wl_display_flush (sink->display->display);
575
576   /* notify _resume_rendering() in case it's waiting */
577   g_cond_broadcast (&sink->render_cond);
578
579   if (buffer != to_render)
580     gst_buffer_unref (to_render);
581   goto done;
582
583 no_buffer:
584   {
585     GST_WARNING_OBJECT (sink, "could not create image");
586     goto done;
587   }
588 no_pool:
589   {
590     GST_ELEMENT_ERROR (sink, RESOURCE, WRITE,
591         ("Internal error: can't allocate images"),
592         ("We don't have a bufferpool negotiated"));
593     ret = GST_FLOW_ERROR;
594     goto done;
595   }
596 activate_failed:
597   {
598     GST_ERROR_OBJECT (sink, "failed to activate bufferpool.");
599     ret = GST_FLOW_ERROR;
600     goto done;
601   }
602 done:
603   {
604     GST_OBJECT_UNLOCK (sink);
605     return ret;
606   }
607 }
608
609 static void
610 gst_wayland_sink_videooverlay_init (GstVideoOverlayInterface * iface)
611 {
612   iface->set_window_handle = gst_wayland_sink_set_window_handle;
613   iface->expose = gst_wayland_sink_expose;
614 }
615
616 static void
617 gst_wayland_sink_set_window_handle (GstVideoOverlay * overlay, guintptr handle)
618 {
619   GstWaylandSink *sink = GST_WAYLAND_SINK (overlay);
620   GstWaylandWindowHandle *whandle = (GstWaylandWindowHandle *) handle;
621   GError *error = NULL;
622   GstPad *peer;
623
624   g_return_if_fail (sink != NULL);
625
626   GST_DEBUG_OBJECT (sink, "Setting window handle %" GST_PTR_FORMAT,
627       (void *) handle);
628
629   if (GST_STATE (sink) > GST_STATE_READY)
630     gst_wayland_sink_pause_rendering (GST_WAYLAND_VIDEO (sink));
631
632   g_clear_object (&sink->window);
633   g_clear_object (&sink->display);
634
635   if (handle) {
636     sink->display =
637         gst_wl_display_new_existing (whandle->display, FALSE, &error);
638     if (error) {
639       GST_ELEMENT_WARNING (sink, RESOURCE, OPEN_READ_WRITE,
640           ("Could not set window handle"),
641           ("Failed to use the external wayland display: '%s'", error->message));
642       g_error_free (error);
643     } else {
644       wl_proxy_set_queue ((struct wl_proxy *) whandle->surface,
645           sink->display->queue);
646       sink->window = gst_wl_window_new_from_surface (sink->display,
647           whandle->surface, whandle->width, whandle->height);
648     }
649   } else {
650     /* reconfigure to force creation of new window in set_caps */
651     sink->negotiated = FALSE;
652     peer = gst_pad_get_peer (GST_VIDEO_SINK_PAD (sink));
653     if (peer) {
654       gst_pad_send_event (peer, gst_event_new_reconfigure ());
655       gst_object_unref (peer);
656     }
657   }
658
659   if (GST_STATE (sink) > GST_STATE_READY)
660     gst_wayland_sink_resume_rendering (GST_WAYLAND_VIDEO (sink));
661 }
662
663 static void
664 gst_wayland_sink_expose (GstVideoOverlay * overlay)
665 {
666   GstWaylandSink *sink = GST_WAYLAND_SINK (overlay);
667   g_return_if_fail (sink != NULL);
668 }
669
670 static void
671 gst_wayland_sink_waylandvideo_init (GstWaylandVideoInterface * iface)
672 {
673   iface->set_surface_size = gst_wayland_sink_set_surface_size;
674   iface->pause_rendering = gst_wayland_sink_pause_rendering;
675   iface->resume_rendering = gst_wayland_sink_resume_rendering;
676 }
677
678 static void
679 gst_wayland_sink_set_surface_size (GstWaylandVideo * video, gint w, gint h)
680 {
681   GstWaylandSink *sink = GST_WAYLAND_SINK (video);
682
683   g_return_if_fail (sink != NULL);
684   g_return_if_fail (sink->window != NULL);
685
686   GST_OBJECT_LOCK (sink);
687   if (!sink->window) {
688     GST_OBJECT_UNLOCK (sink);
689     GST_WARNING_OBJECT (sink,
690         "set_surface_size called without window, ignoring");
691     return;
692   }
693
694   gst_wl_window_set_size (sink->window, w, h);
695   GST_OBJECT_UNLOCK (sink);
696 }
697
698 static void
699 gst_wayland_sink_pause_rendering (GstWaylandVideo * video)
700 {
701   GstWaylandSink *sink = GST_WAYLAND_SINK (video);
702   g_return_if_fail (sink != NULL);
703
704   GST_OBJECT_LOCK (sink);
705   sink->drawing_frozen = TRUE;
706   GST_OBJECT_UNLOCK (sink);
707 }
708
709 static void
710 gst_wayland_sink_resume_rendering (GstWaylandVideo * video)
711 {
712   GstWaylandSink *sink = GST_WAYLAND_SINK (video);
713   g_return_if_fail (sink != NULL);
714
715   GST_OBJECT_LOCK (sink);
716   sink->drawing_frozen = FALSE;
717   g_cond_wait (&sink->render_cond, GST_OBJECT_GET_LOCK (sink));
718   GST_OBJECT_UNLOCK (sink);
719 }
720
721 static gboolean
722 plugin_init (GstPlugin * plugin)
723 {
724   GST_DEBUG_CATEGORY_INIT (gstwayland_debug, "waylandsink", 0,
725       " wayland video sink");
726
727   return gst_element_register (plugin, "waylandsink", GST_RANK_MARGINAL,
728       GST_TYPE_WAYLAND_SINK);
729 }
730
731 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
732     GST_VERSION_MINOR,
733     waylandsink,
734     "Wayland Video Sink", plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME,
735     GST_PACKAGE_ORIGIN)