mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
2ad337e440
Support the wayland zwp_linux_dmabuf_unstable_v1 protocol. SHM formats and DMABuf formats are exposed differently in caps: the DMABuf formats are flagged with GST_CAPS_FEATURE_MEMORY_DMABUF. No buffer pool is proposed for DMABuf buffers, it is the upstream element responsibility to provide with such buffers. https://bugzilla.gnome.org/show_bug.cgi?id=711155
177 lines
5.7 KiB
C
177 lines
5.7 KiB
C
/* GStreamer Wayland video sink
|
|
*
|
|
* Copyright (C) 2011 Intel Corporation
|
|
* Copyright (C) 2011 Sreerenj Balachandran <sreerenj.balachandran@intel.com>
|
|
* Copyright (C) 2012 Wim Taymans <wim.taymans@gmail.com>
|
|
* Copyright (C) 2014 Collabora Ltd.
|
|
*
|
|
* 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 "wlvideoformat.h"
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN (gstwayland_debug);
|
|
#define GST_CAT_DEFAULT gstwayland_debug
|
|
|
|
typedef struct
|
|
{
|
|
enum wl_shm_format wl_format;
|
|
GstVideoFormat gst_format;
|
|
} wl_ShmVideoFormat;
|
|
|
|
typedef struct
|
|
{
|
|
guint wl_format;
|
|
GstVideoFormat gst_format;
|
|
} wl_DmabufVideoFormat;
|
|
|
|
static const wl_ShmVideoFormat shm_formats[] = {
|
|
#if G_BYTE_ORDER == G_BIG_ENDIAN
|
|
{WL_SHM_FORMAT_XRGB8888, GST_VIDEO_FORMAT_xRGB},
|
|
{WL_SHM_FORMAT_ARGB8888, GST_VIDEO_FORMAT_ARGB},
|
|
{WL_SHM_FORMAT_XBGR8888, GST_VIDEO_FORMAT_xBGR},
|
|
{WL_SHM_FORMAT_RGBX8888, GST_VIDEO_FORMAT_RGBx},
|
|
{WL_SHM_FORMAT_BGRX8888, GST_VIDEO_FORMAT_BGRx},
|
|
{WL_SHM_FORMAT_ABGR8888, GST_VIDEO_FORMAT_ABGR},
|
|
{WL_SHM_FORMAT_RGBA8888, GST_VIDEO_FORMAT_RGBA},
|
|
{WL_SHM_FORMAT_BGRA8888, GST_VIDEO_FORMAT_BGRA},
|
|
#else
|
|
{WL_SHM_FORMAT_XRGB8888, GST_VIDEO_FORMAT_BGRx},
|
|
{WL_SHM_FORMAT_ARGB8888, GST_VIDEO_FORMAT_BGRA},
|
|
{WL_SHM_FORMAT_XBGR8888, GST_VIDEO_FORMAT_RGBx},
|
|
{WL_SHM_FORMAT_RGBX8888, GST_VIDEO_FORMAT_xBGR},
|
|
{WL_SHM_FORMAT_BGRX8888, GST_VIDEO_FORMAT_xRGB},
|
|
{WL_SHM_FORMAT_ABGR8888, GST_VIDEO_FORMAT_RGBA},
|
|
{WL_SHM_FORMAT_RGBA8888, GST_VIDEO_FORMAT_ABGR},
|
|
{WL_SHM_FORMAT_BGRA8888, GST_VIDEO_FORMAT_ARGB},
|
|
#endif
|
|
{WL_SHM_FORMAT_RGB888, GST_VIDEO_FORMAT_RGB},
|
|
{WL_SHM_FORMAT_BGR888, GST_VIDEO_FORMAT_BGR},
|
|
{WL_SHM_FORMAT_RGB565, GST_VIDEO_FORMAT_RGB16},
|
|
{WL_SHM_FORMAT_BGR565, GST_VIDEO_FORMAT_BGR16},
|
|
|
|
{WL_SHM_FORMAT_YUYV, GST_VIDEO_FORMAT_YUY2},
|
|
{WL_SHM_FORMAT_YVYU, GST_VIDEO_FORMAT_YVYU},
|
|
{WL_SHM_FORMAT_UYVY, GST_VIDEO_FORMAT_UYVY},
|
|
{WL_SHM_FORMAT_AYUV, GST_VIDEO_FORMAT_AYUV},
|
|
{WL_SHM_FORMAT_NV12, GST_VIDEO_FORMAT_NV12},
|
|
{WL_SHM_FORMAT_NV21, GST_VIDEO_FORMAT_NV21},
|
|
{WL_SHM_FORMAT_NV16, GST_VIDEO_FORMAT_NV16},
|
|
{WL_SHM_FORMAT_YUV410, GST_VIDEO_FORMAT_YUV9},
|
|
{WL_SHM_FORMAT_YVU410, GST_VIDEO_FORMAT_YVU9},
|
|
{WL_SHM_FORMAT_YUV411, GST_VIDEO_FORMAT_Y41B},
|
|
{WL_SHM_FORMAT_YUV420, GST_VIDEO_FORMAT_I420},
|
|
{WL_SHM_FORMAT_YVU420, GST_VIDEO_FORMAT_YV12},
|
|
{WL_SHM_FORMAT_YUV422, GST_VIDEO_FORMAT_Y42B},
|
|
{WL_SHM_FORMAT_YUV444, GST_VIDEO_FORMAT_v308},
|
|
};
|
|
|
|
static const wl_DmabufVideoFormat dmabuf_formats[] = {
|
|
#if G_BYTE_ORDER == G_BIG_ENDIAN
|
|
{DRM_FORMAT_XRGB8888, GST_VIDEO_FORMAT_xRGB},
|
|
{DRM_FORMAT_ARGB8888, GST_VIDEO_FORMAT_ARGB},
|
|
{DRM_FORMAT_XBGR8888, GST_VIDEO_FORMAT_xBGR},
|
|
{DRM_FORMAT_RGBX8888, GST_VIDEO_FORMAT_RGBx},
|
|
{DRM_FORMAT_BGRX8888, GST_VIDEO_FORMAT_BGRx},
|
|
{DRM_FORMAT_ABGR8888, GST_VIDEO_FORMAT_ABGR},
|
|
{DRM_FORMAT_RGBA8888, GST_VIDEO_FORMAT_RGBA},
|
|
{DRM_FORMAT_BGRA8888, GST_VIDEO_FORMAT_BGRA},
|
|
{DRM_FORMAT_RGB888, GST_VIDEO_FORMAT_RGB},
|
|
{DRM_FORMAT_BGR888, GST_VIDEO_FORMAT_BGR},
|
|
#else
|
|
{DRM_FORMAT_XRGB8888, GST_VIDEO_FORMAT_BGRx},
|
|
{DRM_FORMAT_ARGB8888, GST_VIDEO_FORMAT_BGRA},
|
|
{DRM_FORMAT_XBGR8888, GST_VIDEO_FORMAT_RGBx},
|
|
{DRM_FORMAT_RGBX8888, GST_VIDEO_FORMAT_xBGR},
|
|
{DRM_FORMAT_BGRX8888, GST_VIDEO_FORMAT_xRGB},
|
|
{DRM_FORMAT_ABGR8888, GST_VIDEO_FORMAT_RGBA},
|
|
{DRM_FORMAT_RGBA8888, GST_VIDEO_FORMAT_ABGR},
|
|
{DRM_FORMAT_BGRA8888, GST_VIDEO_FORMAT_ARGB},
|
|
{DRM_FORMAT_RGB888, GST_VIDEO_FORMAT_BGR},
|
|
{DRM_FORMAT_BGR888, GST_VIDEO_FORMAT_RGB},
|
|
#endif
|
|
{DRM_FORMAT_RGB565, GST_VIDEO_FORMAT_RGB16},
|
|
{DRM_FORMAT_YUYV, GST_VIDEO_FORMAT_YUY2},
|
|
{DRM_FORMAT_NV12, GST_VIDEO_FORMAT_NV12},
|
|
};
|
|
|
|
enum wl_shm_format
|
|
gst_video_format_to_wl_shm_format (GstVideoFormat format)
|
|
{
|
|
guint i;
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (shm_formats); i++)
|
|
if (shm_formats[i].gst_format == format)
|
|
return shm_formats[i].wl_format;
|
|
|
|
GST_WARNING ("wayland shm video format not found");
|
|
return -1;
|
|
}
|
|
|
|
gint
|
|
gst_video_format_to_wl_dmabuf_format (GstVideoFormat format)
|
|
{
|
|
guint i;
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (dmabuf_formats); i++)
|
|
if (dmabuf_formats[i].gst_format == format)
|
|
return dmabuf_formats[i].wl_format;
|
|
|
|
GST_WARNING ("wayland dmabuf video format not found");
|
|
return -1;
|
|
}
|
|
|
|
GstVideoFormat
|
|
gst_wl_shm_format_to_video_format (enum wl_shm_format wl_format)
|
|
{
|
|
guint i;
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (shm_formats); i++)
|
|
if (shm_formats[i].wl_format == wl_format)
|
|
return shm_formats[i].gst_format;
|
|
|
|
return GST_VIDEO_FORMAT_UNKNOWN;
|
|
}
|
|
|
|
GstVideoFormat
|
|
gst_wl_dmabuf_format_to_video_format (guint wl_format)
|
|
{
|
|
guint i;
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (dmabuf_formats); i++)
|
|
if (dmabuf_formats[i].wl_format == wl_format)
|
|
return dmabuf_formats[i].gst_format;
|
|
|
|
return GST_VIDEO_FORMAT_UNKNOWN;
|
|
}
|
|
|
|
const gchar *
|
|
gst_wl_shm_format_to_string (enum wl_shm_format wl_format)
|
|
{
|
|
return gst_video_format_to_string
|
|
(gst_wl_shm_format_to_video_format (wl_format));
|
|
}
|
|
|
|
const gchar *
|
|
gst_wl_dmabuf_format_to_string (guint wl_format)
|
|
{
|
|
return gst_video_format_to_string
|
|
(gst_wl_dmabuf_format_to_video_format (wl_format));
|
|
}
|