mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
147 lines
4.5 KiB
C
147 lines
4.5 KiB
C
|
/* GStreamer Wayland video sink
|
||
|
*
|
||
|
* Copyright (C) 2016 STMicroelectronics SA
|
||
|
* Copyright (C) 2016 Fabien Dessenne <fabien.dessenne@st.com>
|
||
|
*
|
||
|
* 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
|
||
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
* Boston, MA 02110-1301 USA.
|
||
|
*/
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include <config.h>
|
||
|
#endif
|
||
|
|
||
|
#include <gst/allocators/gstdmabuf.h>
|
||
|
|
||
|
#include "wllinuxdmabuf.h"
|
||
|
#include "wlvideoformat.h"
|
||
|
|
||
|
GST_DEBUG_CATEGORY_EXTERN (gstwayland_debug);
|
||
|
#define GST_CAT_DEFAULT gstwayland_debug
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
GMutex lock;
|
||
|
GCond cond;
|
||
|
struct wl_buffer *wbuf;
|
||
|
} ConstructBufferData;
|
||
|
|
||
|
static void
|
||
|
create_succeeded (void *data, struct zwp_linux_buffer_params_v1 *params,
|
||
|
struct wl_buffer *new_buffer)
|
||
|
{
|
||
|
ConstructBufferData *d = data;
|
||
|
|
||
|
g_mutex_lock (&d->lock);
|
||
|
d->wbuf = new_buffer;
|
||
|
zwp_linux_buffer_params_v1_destroy (params);
|
||
|
g_cond_signal (&d->cond);
|
||
|
g_mutex_unlock (&d->lock);
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
create_failed (void *data, struct zwp_linux_buffer_params_v1 *params)
|
||
|
{
|
||
|
ConstructBufferData *d = data;
|
||
|
|
||
|
g_mutex_lock (&d->lock);
|
||
|
d->wbuf = NULL;
|
||
|
zwp_linux_buffer_params_v1_destroy (params);
|
||
|
g_cond_signal (&d->cond);
|
||
|
g_mutex_unlock (&d->lock);
|
||
|
}
|
||
|
|
||
|
static const struct zwp_linux_buffer_params_v1_listener params_listener = {
|
||
|
create_succeeded,
|
||
|
create_failed
|
||
|
};
|
||
|
|
||
|
struct wl_buffer *
|
||
|
gst_wl_linux_dmabuf_construct_wl_buffer (GstBuffer * buf,
|
||
|
GstWlDisplay * display, const GstVideoInfo * info)
|
||
|
{
|
||
|
GstMemory *mem;
|
||
|
int fd, format;
|
||
|
guint i, width, height, offset, stride;
|
||
|
guint nmem, nplanes, mem_idx, flags = 0;
|
||
|
struct zwp_linux_buffer_params_v1 *params;
|
||
|
gint64 timeout;
|
||
|
ConstructBufferData data;
|
||
|
|
||
|
mem = gst_buffer_peek_memory (buf, 0);
|
||
|
format = gst_video_format_to_wl_dmabuf_format (GST_VIDEO_INFO_FORMAT (info));
|
||
|
g_return_val_if_fail (is_dmabuf_format_supported (format, display), NULL);
|
||
|
|
||
|
g_cond_init (&data.cond);
|
||
|
g_mutex_init (&data.lock);
|
||
|
g_mutex_lock (&data.lock);
|
||
|
|
||
|
width = GST_VIDEO_INFO_WIDTH (info);
|
||
|
height = GST_VIDEO_INFO_HEIGHT (info);
|
||
|
nplanes = GST_VIDEO_INFO_N_PLANES (info);
|
||
|
nmem = gst_buffer_n_memory (buf);
|
||
|
|
||
|
/* Creation and configuration of planes */
|
||
|
params = zwp_linux_dmabuf_v1_create_params (display->dmabuf);
|
||
|
|
||
|
for (i = 0; i < nplanes; i++) {
|
||
|
mem_idx = (nmem == nplanes) ? i : 0;
|
||
|
fd = gst_dmabuf_memory_get_fd (gst_buffer_peek_memory (buf, mem_idx));
|
||
|
offset = GST_VIDEO_INFO_PLANE_OFFSET (info, i);
|
||
|
stride = GST_VIDEO_INFO_PLANE_STRIDE (info, i);
|
||
|
zwp_linux_buffer_params_v1_add (params, fd, i, offset, stride, 0, 0);
|
||
|
}
|
||
|
|
||
|
if (GST_BUFFER_FLAG_IS_SET (buf, GST_VIDEO_BUFFER_FLAG_INTERLACED)) {
|
||
|
GST_DEBUG_OBJECT (mem->allocator, "interlaced buffer");
|
||
|
flags = ZWP_LINUX_BUFFER_PARAMS_V1_FLAGS_INTERLACED;
|
||
|
|
||
|
if (!GST_BUFFER_FLAG_IS_SET (buf, GST_VIDEO_BUFFER_FLAG_TFF)) {
|
||
|
GST_DEBUG_OBJECT (mem->allocator, "with bottom field first");
|
||
|
flags |= ZWP_LINUX_BUFFER_PARAMS_V1_FLAGS_BOTTOM_FIRST;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* Request buffer creation */
|
||
|
zwp_linux_buffer_params_v1_add_listener (params, ¶ms_listener, &data);
|
||
|
zwp_linux_buffer_params_v1_create (params, width, height, format, flags);
|
||
|
|
||
|
/* Wait for the request answer */
|
||
|
wl_display_flush (display->display);
|
||
|
data.wbuf = (gpointer) 0x1;
|
||
|
timeout = g_get_monotonic_time () + G_TIME_SPAN_SECOND;
|
||
|
while (data.wbuf == (gpointer) 0x1) {
|
||
|
if (!g_cond_wait_until (&data.cond, &data.lock, timeout)) {
|
||
|
GST_ERROR_OBJECT (mem->allocator, "zwp_linux_buffer_params_v1 time out");
|
||
|
zwp_linux_buffer_params_v1_destroy (params);
|
||
|
data.wbuf = NULL;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (!data.wbuf) {
|
||
|
GST_ERROR_OBJECT (mem->allocator, "can't create linux-dmabuf buffer");
|
||
|
} else {
|
||
|
GST_DEBUG_OBJECT (mem->allocator, "created linux_dmabuf wl_buffer (%p):"
|
||
|
"%dx%d, fmt=%.4s, %d planes",
|
||
|
data.wbuf, width, height, (char *) &format, nplanes);
|
||
|
}
|
||
|
|
||
|
g_mutex_unlock (&data.lock);
|
||
|
g_mutex_clear (&data.lock);
|
||
|
g_cond_clear (&data.cond);
|
||
|
|
||
|
return data.wbuf;
|
||
|
}
|