2012-08-08 14:10:28 +00:00
|
|
|
/* GStreamer Wayland video sink
|
2011-11-02 09:02:11 +00:00
|
|
|
*
|
2012-03-07 23:48:56 +00:00
|
|
|
* Copyright (C) 2011 Intel Corporation
|
|
|
|
* Copyright (C) 2011 Sreerenj Balachandran <sreerenj.balachandran@intel.com>
|
2012-05-23 10:07:14 +00:00
|
|
|
* Copyright (C) 2012 Wim Taymans <wim.taymans@gmail.com>
|
|
|
|
*
|
2011-11-02 09:02:11 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
2012-08-18 19:31:17 +00:00
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA.
|
2011-11-02 09:02:11 +00:00
|
|
|
*/
|
|
|
|
|
2012-03-07 23:48:56 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-waylandsink
|
|
|
|
*
|
|
|
|
* The waylandsink is creating its own window and render the decoded video frames to that.
|
|
|
|
* Setup the Wayland environment as described in
|
|
|
|
* <ulink url="http://wayland.freedesktop.org/building.html">Wayland</ulink> home page.
|
2012-05-23 10:07:14 +00:00
|
|
|
* The current implementaion is based on weston compositor.
|
2012-03-07 23:48:56 +00:00
|
|
|
*
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Example pipelines</title>
|
|
|
|
* |[
|
|
|
|
* gst-launch -v videotestsrc ! waylandsink
|
|
|
|
* ]| test the video rendering in wayland
|
|
|
|
* </refsect2>
|
|
|
|
*/
|
2011-11-02 09:02:11 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gstwaylandsink.h"
|
2014-02-13 09:02:54 +00:00
|
|
|
#include "wlvideoformat.h"
|
2011-11-02 09:02:11 +00:00
|
|
|
|
|
|
|
/* signals */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
SIGNAL_0,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Properties */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_WAYLAND_DISPLAY
|
|
|
|
};
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY (gstwayland_debug);
|
|
|
|
#define GST_CAT_DEFAULT gstwayland_debug
|
|
|
|
|
2013-06-18 11:47:54 +00:00
|
|
|
#if G_BYTE_ORDER == G_BIG_ENDIAN
|
|
|
|
#define CAPS "{xRGB, ARGB}"
|
|
|
|
#else
|
|
|
|
#define CAPS "{BGRx, BGRA}"
|
|
|
|
#endif
|
|
|
|
|
2011-11-02 09:02:11 +00:00
|
|
|
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2013-06-18 11:47:54 +00:00
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE (CAPS))
|
|
|
|
);
|
2012-03-07 23:48:56 +00:00
|
|
|
|
2011-11-02 09:02:11 +00:00
|
|
|
/*Fixme: Add more interfaces */
|
2012-05-23 10:07:14 +00:00
|
|
|
#define gst_wayland_sink_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstWaylandSink, gst_wayland_sink, GST_TYPE_VIDEO_SINK);
|
|
|
|
|
2011-11-02 09:02:11 +00:00
|
|
|
static void gst_wayland_sink_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_wayland_sink_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_wayland_sink_finalize (GObject * object);
|
2012-05-23 10:07:14 +00:00
|
|
|
static GstCaps *gst_wayland_sink_get_caps (GstBaseSink * bsink,
|
|
|
|
GstCaps * filter);
|
2011-11-02 09:02:11 +00:00
|
|
|
static gboolean gst_wayland_sink_set_caps (GstBaseSink * bsink, GstCaps * caps);
|
|
|
|
static gboolean gst_wayland_sink_start (GstBaseSink * bsink);
|
|
|
|
static gboolean gst_wayland_sink_preroll (GstBaseSink * bsink,
|
|
|
|
GstBuffer * buffer);
|
2012-08-08 14:10:28 +00:00
|
|
|
static gboolean
|
|
|
|
gst_wayland_sink_propose_allocation (GstBaseSink * bsink, GstQuery * query);
|
2011-11-02 09:02:11 +00:00
|
|
|
static gboolean gst_wayland_sink_render (GstBaseSink * bsink,
|
|
|
|
GstBuffer * buffer);
|
|
|
|
|
2012-10-20 11:55:41 +00:00
|
|
|
static void frame_redraw_callback (void *data,
|
|
|
|
struct wl_callback *callback, uint32_t time);
|
2014-02-12 10:28:40 +00:00
|
|
|
static void create_window (GstWaylandSink * sink, GstWlDisplay * display,
|
2012-03-07 23:48:56 +00:00
|
|
|
int width, int height);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
|
|
|
static void
|
2011-11-02 11:51:13 +00:00
|
|
|
gst_wayland_sink_class_init (GstWaylandSinkClass * klass)
|
2011-11-02 09:02:11 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
2012-05-23 10:07:14 +00:00
|
|
|
GstElementClass *gstelement_class;
|
2011-11-02 09:02:11 +00:00
|
|
|
GstBaseSinkClass *gstbasesink_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
2012-05-23 10:07:14 +00:00
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2011-11-02 09:02:11 +00:00
|
|
|
gstbasesink_class = (GstBaseSinkClass *) klass;
|
|
|
|
|
|
|
|
gobject_class->set_property = gst_wayland_sink_set_property;
|
|
|
|
gobject_class->get_property = gst_wayland_sink_get_property;
|
|
|
|
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_wayland_sink_finalize);
|
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
|
|
gst_static_pad_template_get (&sink_template));
|
|
|
|
|
2012-10-17 16:34:26 +00:00
|
|
|
gst_element_class_set_static_metadata (gstelement_class,
|
2012-05-23 10:07:14 +00:00
|
|
|
"wayland video sink", "Sink/Video",
|
|
|
|
"Output to wayland surface",
|
|
|
|
"Sreerenj Balachandran <sreerenj.balachandran@intel.com>");
|
|
|
|
|
2011-11-02 09:02:11 +00:00
|
|
|
gstbasesink_class->get_caps = GST_DEBUG_FUNCPTR (gst_wayland_sink_get_caps);
|
|
|
|
gstbasesink_class->set_caps = GST_DEBUG_FUNCPTR (gst_wayland_sink_set_caps);
|
|
|
|
gstbasesink_class->start = GST_DEBUG_FUNCPTR (gst_wayland_sink_start);
|
|
|
|
gstbasesink_class->preroll = GST_DEBUG_FUNCPTR (gst_wayland_sink_preroll);
|
2012-08-08 14:10:28 +00:00
|
|
|
gstbasesink_class->propose_allocation =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_wayland_sink_propose_allocation);
|
2011-11-02 09:02:11 +00:00
|
|
|
gstbasesink_class->render = GST_DEBUG_FUNCPTR (gst_wayland_sink_render);
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_WAYLAND_DISPLAY,
|
2011-11-02 11:51:13 +00:00
|
|
|
g_param_spec_pointer ("wayland-display", "Wayland Display",
|
2012-03-07 23:48:56 +00:00
|
|
|
"Wayland Display handle created by the application ",
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2011-11-02 09:02:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-05-23 10:07:14 +00:00
|
|
|
gst_wayland_sink_init (GstWaylandSink * sink)
|
2011-11-02 09:02:11 +00:00
|
|
|
{
|
2012-02-16 20:27:23 +00:00
|
|
|
sink->display = NULL;
|
|
|
|
sink->window = NULL;
|
2012-08-08 14:10:28 +00:00
|
|
|
sink->pool = NULL;
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
g_mutex_init (&sink->wayland_lock);
|
2011-11-02 09:02:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_wayland_sink_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2011-11-02 11:51:13 +00:00
|
|
|
GstWaylandSink *sink = GST_WAYLAND_SINK (object);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_WAYLAND_DISPLAY:
|
|
|
|
g_value_set_pointer (value, sink->display);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_wayland_sink_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2011-11-02 11:51:13 +00:00
|
|
|
GstWaylandSink *sink = GST_WAYLAND_SINK (object);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_WAYLAND_DISPLAY:
|
|
|
|
sink->display = g_value_get_pointer (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-16 20:27:23 +00:00
|
|
|
static void
|
|
|
|
destroy_window (struct window *window)
|
|
|
|
{
|
2012-03-07 23:48:56 +00:00
|
|
|
if (window->shell_surface)
|
|
|
|
wl_shell_surface_destroy (window->shell_surface);
|
2012-08-08 14:10:28 +00:00
|
|
|
|
2012-03-07 23:48:56 +00:00
|
|
|
if (window->surface)
|
|
|
|
wl_surface_destroy (window->surface);
|
2012-08-08 14:10:28 +00:00
|
|
|
|
2012-02-16 20:27:23 +00:00
|
|
|
free (window);
|
|
|
|
}
|
|
|
|
|
2011-11-02 09:02:11 +00:00
|
|
|
static void
|
|
|
|
gst_wayland_sink_finalize (GObject * object)
|
|
|
|
{
|
2011-11-02 11:51:13 +00:00
|
|
|
GstWaylandSink *sink = GST_WAYLAND_SINK (object);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2011-11-02 11:51:13 +00:00
|
|
|
GST_DEBUG_OBJECT (sink, "Finalizing the sink..");
|
|
|
|
|
2012-03-07 23:48:56 +00:00
|
|
|
if (sink->window)
|
|
|
|
destroy_window (sink->window);
|
|
|
|
if (sink->display)
|
2014-02-12 10:28:40 +00:00
|
|
|
g_object_unref (sink->display);
|
2011-11-02 11:51:13 +00:00
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
g_mutex_clear (&sink->wayland_lock);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
2012-05-23 10:07:14 +00:00
|
|
|
gst_wayland_sink_get_caps (GstBaseSink * bsink, GstCaps * filter)
|
2011-11-02 09:02:11 +00:00
|
|
|
{
|
2012-08-08 14:10:28 +00:00
|
|
|
GstWaylandSink *sink;
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
sink = GST_WAYLAND_SINK (bsink);
|
|
|
|
|
|
|
|
caps = gst_pad_get_pad_template_caps (GST_VIDEO_SINK_PAD (sink));
|
|
|
|
if (filter) {
|
|
|
|
GstCaps *intersection;
|
|
|
|
|
|
|
|
intersection =
|
|
|
|
gst_caps_intersect_full (filter, caps, GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
caps = intersection;
|
|
|
|
}
|
|
|
|
return caps;
|
2011-11-02 09:02:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_wayland_sink_set_caps (GstBaseSink * bsink, GstCaps * caps)
|
|
|
|
{
|
2014-04-14 05:56:16 +00:00
|
|
|
GstWaylandSink *sink;
|
2012-08-08 14:10:28 +00:00
|
|
|
GstBufferPool *newpool, *oldpool;
|
|
|
|
GstVideoInfo info;
|
|
|
|
GstStructure *structure;
|
|
|
|
static GstAllocationParams params = { 0, 0, 0, 15, };
|
|
|
|
guint size;
|
|
|
|
|
|
|
|
sink = GST_WAYLAND_SINK (bsink);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
|
|
|
GST_LOG_OBJECT (sink, "set caps %" GST_PTR_FORMAT, caps);
|
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
if (!gst_video_info_from_caps (&info, caps))
|
|
|
|
goto invalid_format;
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2013-06-18 11:47:54 +00:00
|
|
|
if (!gst_wayland_sink_format_from_caps (&sink->format, caps))
|
|
|
|
goto invalid_format;
|
|
|
|
|
|
|
|
if (!(sink->display->formats & (1 << sink->format))) {
|
|
|
|
GST_DEBUG_OBJECT (sink, "%s not available",
|
|
|
|
gst_wayland_format_to_string (sink->format));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
sink->video_width = info.width;
|
|
|
|
sink->video_height = info.height;
|
|
|
|
size = info.size;
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
/* create a new pool for the new configuration */
|
|
|
|
newpool = gst_wayland_buffer_pool_new (sink);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
if (!newpool) {
|
|
|
|
GST_DEBUG_OBJECT (sink, "Failed to create new pool");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
structure = gst_buffer_pool_get_config (newpool);
|
|
|
|
gst_buffer_pool_config_set_params (structure, caps, size, 2, 0);
|
|
|
|
gst_buffer_pool_config_set_allocator (structure, NULL, ¶ms);
|
|
|
|
if (!gst_buffer_pool_set_config (newpool, structure))
|
|
|
|
goto config_failed;
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
oldpool = sink->pool;
|
|
|
|
sink->pool = newpool;
|
|
|
|
if (oldpool)
|
|
|
|
gst_object_unref (oldpool);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
return TRUE;
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
invalid_format:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (sink,
|
|
|
|
"Could not locate image format from caps %" GST_PTR_FORMAT, caps);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
config_failed:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (bsink, "failed setting config");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-11-02 09:02:11 +00:00
|
|
|
}
|
|
|
|
|
2012-08-17 08:10:39 +00:00
|
|
|
static void
|
|
|
|
handle_ping (void *data, struct wl_shell_surface *shell_surface,
|
|
|
|
uint32_t serial)
|
|
|
|
{
|
|
|
|
wl_shell_surface_pong (shell_surface, serial);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_configure (void *data, struct wl_shell_surface *shell_surface,
|
|
|
|
uint32_t edges, int32_t width, int32_t height)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_popup_done (void *data, struct wl_shell_surface *shell_surface)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_shell_surface_listener shell_surface_listener = {
|
|
|
|
handle_ping,
|
|
|
|
handle_configure,
|
|
|
|
handle_popup_done
|
|
|
|
};
|
2012-08-08 14:10:28 +00:00
|
|
|
|
2012-02-16 20:27:23 +00:00
|
|
|
static void
|
2014-02-12 10:28:40 +00:00
|
|
|
create_window (GstWaylandSink * sink, GstWlDisplay * display, int width,
|
2011-11-02 09:02:11 +00:00
|
|
|
int height)
|
|
|
|
{
|
|
|
|
struct window *window;
|
|
|
|
|
2012-02-16 20:27:23 +00:00
|
|
|
if (sink->window)
|
|
|
|
return;
|
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
g_mutex_lock (&sink->wayland_lock);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
|
|
|
window = malloc (sizeof *window);
|
|
|
|
window->width = width;
|
|
|
|
window->height = height;
|
2012-08-08 14:10:28 +00:00
|
|
|
|
2011-11-02 09:02:11 +00:00
|
|
|
window->surface = wl_compositor_create_surface (display->compositor);
|
|
|
|
|
2012-02-16 20:27:23 +00:00
|
|
|
window->shell_surface = wl_shell_get_shell_surface (display->shell,
|
|
|
|
window->surface);
|
2012-08-17 08:10:39 +00:00
|
|
|
|
|
|
|
g_return_if_fail (window->shell_surface);
|
|
|
|
|
|
|
|
wl_shell_surface_add_listener (window->shell_surface,
|
|
|
|
&shell_surface_listener, window);
|
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
wl_shell_surface_set_toplevel (window->shell_surface);
|
2012-02-16 20:27:23 +00:00
|
|
|
|
|
|
|
sink->window = window;
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
g_mutex_unlock (&sink->wayland_lock);
|
2011-11-02 09:02:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_wayland_sink_start (GstBaseSink * bsink)
|
|
|
|
{
|
2011-11-02 11:51:13 +00:00
|
|
|
GstWaylandSink *sink = (GstWaylandSink *) bsink;
|
2011-11-02 09:02:11 +00:00
|
|
|
gboolean result = TRUE;
|
2014-02-12 10:28:40 +00:00
|
|
|
GError *error = NULL;
|
2011-11-02 09:02:11 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (sink, "start");
|
|
|
|
|
|
|
|
if (!sink->display)
|
2014-02-12 10:28:40 +00:00
|
|
|
sink->display = gst_wl_display_new (NULL, &error);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-09-13 00:07:46 +00:00
|
|
|
if (sink->display == NULL) {
|
2014-02-12 10:28:40 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, RESOURCE, OPEN_READ_WRITE,
|
2012-09-13 00:07:46 +00:00
|
|
|
("Could not initialise Wayland output"),
|
2014-02-12 10:28:40 +00:00
|
|
|
("Failed to create GstWlDisplay: '%s'", error->message));
|
2012-09-13 00:07:46 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-11-02 09:02:11 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-08-08 14:10:28 +00:00
|
|
|
gst_wayland_sink_propose_allocation (GstBaseSink * bsink, GstQuery * query)
|
|
|
|
{
|
|
|
|
GstWaylandSink *sink = GST_WAYLAND_SINK (bsink);
|
|
|
|
GstBufferPool *pool;
|
|
|
|
GstStructure *config;
|
|
|
|
GstCaps *caps;
|
|
|
|
guint size;
|
|
|
|
gboolean need_pool;
|
|
|
|
|
|
|
|
gst_query_parse_allocation (query, &caps, &need_pool);
|
|
|
|
|
|
|
|
if (caps == NULL)
|
|
|
|
goto no_caps;
|
|
|
|
|
|
|
|
g_mutex_lock (&sink->wayland_lock);
|
|
|
|
if ((pool = sink->pool))
|
|
|
|
gst_object_ref (pool);
|
|
|
|
g_mutex_unlock (&sink->wayland_lock);
|
|
|
|
|
|
|
|
if (pool != NULL) {
|
|
|
|
GstCaps *pcaps;
|
|
|
|
|
|
|
|
/* we had a pool, check caps */
|
|
|
|
config = gst_buffer_pool_get_config (pool);
|
|
|
|
gst_buffer_pool_config_get_params (config, &pcaps, &size, NULL, NULL);
|
|
|
|
|
|
|
|
if (!gst_caps_is_equal (caps, pcaps)) {
|
|
|
|
/* different caps, we can't use this pool */
|
|
|
|
gst_object_unref (pool);
|
|
|
|
pool = NULL;
|
|
|
|
}
|
|
|
|
gst_structure_free (config);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pool == NULL && need_pool) {
|
|
|
|
GstVideoInfo info;
|
|
|
|
|
|
|
|
if (!gst_video_info_from_caps (&info, caps))
|
|
|
|
goto invalid_caps;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (sink, "create new pool");
|
|
|
|
pool = gst_wayland_buffer_pool_new (sink);
|
|
|
|
|
|
|
|
/* the normal size of a frame */
|
|
|
|
size = info.size;
|
|
|
|
|
|
|
|
config = gst_buffer_pool_get_config (pool);
|
|
|
|
gst_buffer_pool_config_set_params (config, caps, size, 2, 0);
|
|
|
|
if (!gst_buffer_pool_set_config (pool, config))
|
|
|
|
goto config_failed;
|
|
|
|
}
|
|
|
|
if (pool) {
|
|
|
|
gst_query_add_allocation_pool (query, pool, size, 2, 0);
|
|
|
|
gst_object_unref (pool);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_caps:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (bsink, "no caps specified");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
invalid_caps:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (bsink, "invalid caps specified");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
config_failed:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (bsink, "failed setting config");
|
|
|
|
gst_object_unref (pool);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-02 09:02:11 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_wayland_sink_preroll (GstBaseSink * bsink, GstBuffer * buffer)
|
|
|
|
{
|
2012-05-23 10:07:14 +00:00
|
|
|
GST_DEBUG_OBJECT (bsink, "preroll buffer %p", buffer);
|
2011-11-02 09:02:11 +00:00
|
|
|
return gst_wayland_sink_render (bsink, buffer);
|
|
|
|
}
|
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
static void
|
|
|
|
frame_redraw_callback (void *data, struct wl_callback *callback, uint32_t time)
|
|
|
|
{
|
2014-02-12 10:28:40 +00:00
|
|
|
GST_LOG ("frame_redraw_cb");
|
2012-08-08 14:10:28 +00:00
|
|
|
wl_callback_destroy (callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_callback_listener frame_callback_listener = {
|
|
|
|
frame_redraw_callback
|
|
|
|
};
|
|
|
|
|
2011-11-02 09:02:11 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_wayland_sink_render (GstBaseSink * bsink, GstBuffer * buffer)
|
|
|
|
{
|
2011-11-02 11:51:13 +00:00
|
|
|
GstWaylandSink *sink = GST_WAYLAND_SINK (bsink);
|
|
|
|
GstVideoRectangle src, dst, res;
|
2012-05-23 10:07:14 +00:00
|
|
|
GstBuffer *to_render;
|
|
|
|
GstWlMeta *meta;
|
2012-08-08 14:10:28 +00:00
|
|
|
GstFlowReturn ret;
|
|
|
|
struct window *window;
|
2014-02-13 10:32:00 +00:00
|
|
|
struct wl_callback *callback;
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-07-15 11:27:12 +00:00
|
|
|
GST_LOG_OBJECT (sink, "render buffer %p", buffer);
|
2012-02-16 20:27:23 +00:00
|
|
|
if (!sink->window)
|
|
|
|
create_window (sink, sink->display, sink->video_width, sink->video_height);
|
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
window = sink->window;
|
|
|
|
|
2012-10-20 11:55:41 +00:00
|
|
|
meta = gst_buffer_get_wl_meta (buffer);
|
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
if (meta && meta->sink == sink) {
|
|
|
|
GST_LOG_OBJECT (sink, "buffer %p from our pool, writing directly", buffer);
|
|
|
|
to_render = buffer;
|
|
|
|
} else {
|
|
|
|
GstMapInfo src;
|
|
|
|
GST_LOG_OBJECT (sink, "buffer %p not from our pool, copying", buffer);
|
2011-11-02 11:51:13 +00:00
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
if (!sink->pool)
|
|
|
|
goto no_pool;
|
|
|
|
|
|
|
|
if (!gst_buffer_pool_set_active (sink->pool, TRUE))
|
|
|
|
goto activate_failed;
|
|
|
|
|
|
|
|
ret = gst_buffer_pool_acquire_buffer (sink->pool, &to_render, NULL);
|
|
|
|
if (ret != GST_FLOW_OK)
|
|
|
|
goto no_buffer;
|
2011-11-02 11:51:13 +00:00
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
gst_buffer_map (buffer, &src, GST_MAP_READ);
|
|
|
|
gst_buffer_fill (to_render, 0, src.data, src.size);
|
|
|
|
gst_buffer_unmap (buffer, &src);
|
2011-11-02 11:51:13 +00:00
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
meta = gst_buffer_get_wl_meta (to_render);
|
|
|
|
}
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
src.w = sink->video_width;
|
|
|
|
src.h = sink->video_height;
|
|
|
|
dst.w = sink->window->width;
|
|
|
|
dst.h = sink->window->height;
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
gst_video_sink_center_rect (src, dst, &res, FALSE);
|
2011-11-02 11:51:13 +00:00
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
wl_surface_attach (sink->window->surface, meta->wbuffer, 0, 0);
|
|
|
|
wl_surface_damage (sink->window->surface, 0, 0, res.w, res.h);
|
2014-02-13 10:32:00 +00:00
|
|
|
callback = wl_surface_frame (window->surface);
|
|
|
|
wl_callback_add_listener (callback, &frame_callback_listener, window);
|
2012-10-20 11:55:41 +00:00
|
|
|
wl_surface_commit (window->surface);
|
2014-02-12 10:28:40 +00:00
|
|
|
wl_display_flush (sink->display->display);
|
2011-11-02 09:02:11 +00:00
|
|
|
|
2012-05-23 10:07:14 +00:00
|
|
|
if (buffer != to_render)
|
|
|
|
gst_buffer_unref (to_render);
|
2011-11-02 09:02:11 +00:00
|
|
|
return GST_FLOW_OK;
|
2012-05-23 10:07:14 +00:00
|
|
|
|
2012-08-08 14:10:28 +00:00
|
|
|
no_buffer:
|
|
|
|
{
|
|
|
|
GST_WARNING_OBJECT (sink, "could not create image");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
no_pool:
|
2012-05-23 10:07:14 +00:00
|
|
|
{
|
2012-08-08 14:10:28 +00:00
|
|
|
GST_ELEMENT_ERROR (sink, RESOURCE, WRITE,
|
|
|
|
("Internal error: can't allocate images"),
|
|
|
|
("We don't have a bufferpool negotiated"));
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
activate_failed:
|
|
|
|
{
|
|
|
|
GST_ERROR_OBJECT (sink, "failed to activate bufferpool.");
|
|
|
|
ret = GST_FLOW_ERROR;
|
|
|
|
return ret;
|
2012-05-23 10:07:14 +00:00
|
|
|
}
|
2011-11-02 09:02:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gstwayland_debug, "waylandsink", 0,
|
|
|
|
" wayland video sink");
|
|
|
|
|
|
|
|
return gst_element_register (plugin, "waylandsink", GST_RANK_MARGINAL,
|
|
|
|
GST_TYPE_WAYLAND_SINK);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 16:02:56 +00:00
|
|
|
waylandsink,
|
2012-03-07 23:48:56 +00:00
|
|
|
"Wayland Video Sink", plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME,
|
|
|
|
GST_PACKAGE_ORIGIN)
|