2020-02-10 23:02:37 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2020 Nicolas Dufresne <nicolas.dufresne@collabora.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 St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gstv4l2format.h"
|
|
|
|
|
|
|
|
#define GST_CAT_DEFAULT gstv4l2codecs_debug
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN (gstv4l2codecs_debug);
|
|
|
|
|
|
|
|
struct FormatEntry
|
|
|
|
{
|
|
|
|
guint32 v4l2_pix_fmt;
|
|
|
|
gint num_planes;
|
|
|
|
GstVideoFormat gst_fmt;
|
|
|
|
guint bitdepth;
|
|
|
|
gint subsampling;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct FormatEntry format_map[] = {
|
|
|
|
{V4L2_PIX_FMT_NV12, 1, GST_VIDEO_FORMAT_NV12, 8, 420},
|
2020-02-17 23:08:48 +00:00
|
|
|
{V4L2_PIX_FMT_YUYV, 1, GST_VIDEO_FORMAT_YUY2, 8, 422},
|
2020-07-15 01:49:33 +00:00
|
|
|
{V4L2_PIX_FMT_SUNXI_TILED_NV12, 1, GST_VIDEO_FORMAT_NV12_32L32, 8, 422},
|
2021-03-30 16:30:46 +00:00
|
|
|
{V4L2_PIX_FMT_NV12_4L4, 1, GST_VIDEO_FORMAT_NV12_4L4, 8, 420},
|
2020-02-10 23:02:37 +00:00
|
|
|
{0,}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct FormatEntry *
|
|
|
|
lookup_v4l2_fmt (guint v4l2_pix_fmt)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
struct FormatEntry *ret = NULL;
|
|
|
|
|
|
|
|
for (i = 0; format_map[i].v4l2_pix_fmt; i++) {
|
|
|
|
if (format_map[i].v4l2_pix_fmt == v4l2_pix_fmt) {
|
|
|
|
ret = format_map + i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-03-13 20:51:27 +00:00
|
|
|
static struct FormatEntry *
|
|
|
|
lookup_gst_fmt (GstVideoFormat gst_fmt)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
struct FormatEntry *ret = NULL;
|
|
|
|
|
|
|
|
for (i = 0; format_map[i].v4l2_pix_fmt; i++) {
|
|
|
|
if (format_map[i].gst_fmt == gst_fmt) {
|
|
|
|
ret = format_map + i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-03-13 18:23:39 +00:00
|
|
|
static gint
|
|
|
|
extrapolate_stride (const GstVideoFormatInfo * finfo, gint plane, gint stride)
|
|
|
|
{
|
|
|
|
gint estride;
|
|
|
|
|
|
|
|
switch (finfo->format) {
|
|
|
|
case GST_VIDEO_FORMAT_NV12:
|
2021-03-30 16:30:46 +00:00
|
|
|
case GST_VIDEO_FORMAT_NV12_4L4:
|
2020-07-15 01:49:33 +00:00
|
|
|
case GST_VIDEO_FORMAT_NV12_32L32:
|
2020-03-13 18:23:39 +00:00
|
|
|
case GST_VIDEO_FORMAT_NV12_64Z32:
|
|
|
|
case GST_VIDEO_FORMAT_NV16:
|
2020-07-15 01:49:33 +00:00
|
|
|
case GST_VIDEO_FORMAT_NV21:
|
2020-03-13 18:23:39 +00:00
|
|
|
case GST_VIDEO_FORMAT_NV24:
|
2020-07-15 01:49:33 +00:00
|
|
|
case GST_VIDEO_FORMAT_NV61:
|
2020-03-13 18:23:39 +00:00
|
|
|
estride = (plane == 0 ? 1 : 2) *
|
|
|
|
GST_VIDEO_FORMAT_INFO_SCALE_WIDTH (finfo, plane, stride);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
estride = GST_VIDEO_FORMAT_INFO_SCALE_WIDTH (finfo, plane, stride);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return estride;
|
|
|
|
}
|
|
|
|
|
2020-07-15 01:49:33 +00:00
|
|
|
static void
|
|
|
|
set_stride (GstVideoInfo * info, gint plane, gint stride)
|
|
|
|
{
|
|
|
|
const GstVideoFormatInfo *finfo = info->finfo;
|
|
|
|
|
|
|
|
if (GST_VIDEO_FORMAT_INFO_IS_TILED (finfo)) {
|
|
|
|
gint x_tiles, y_tiles, ws, hs, padded_height;
|
|
|
|
|
|
|
|
ws = GST_VIDEO_FORMAT_INFO_TILE_WS (finfo);
|
|
|
|
hs = GST_VIDEO_FORMAT_INFO_TILE_HS (finfo);
|
|
|
|
|
|
|
|
padded_height = GST_VIDEO_FORMAT_INFO_SCALE_HEIGHT (finfo, plane,
|
|
|
|
info->height);
|
|
|
|
padded_height = GST_ROUND_UP_N (padded_height, 1 << hs);
|
|
|
|
|
|
|
|
x_tiles = stride >> ws;
|
|
|
|
y_tiles = padded_height >> hs;
|
|
|
|
info->stride[plane] = GST_VIDEO_TILE_MAKE_STRIDE (x_tiles, y_tiles);
|
|
|
|
} else {
|
|
|
|
info->stride[plane] = stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-10 23:02:37 +00:00
|
|
|
gboolean
|
2020-07-15 01:49:33 +00:00
|
|
|
gst_v4l2_format_to_video_info (struct v4l2_format *fmt, GstVideoInfo * out_info)
|
2020-02-10 23:02:37 +00:00
|
|
|
{
|
|
|
|
struct FormatEntry *entry = lookup_v4l2_fmt (fmt->fmt.pix_mp.pixelformat);
|
2020-03-13 18:23:39 +00:00
|
|
|
struct v4l2_pix_format_mplane *pix_mp = &fmt->fmt.pix_mp;
|
2020-04-30 18:18:47 +00:00
|
|
|
struct v4l2_pix_format *pix = &fmt->fmt.pix;
|
2020-03-13 18:23:39 +00:00
|
|
|
gint plane;
|
|
|
|
gsize offset = 0;
|
2020-02-10 23:02:37 +00:00
|
|
|
|
|
|
|
if (!entry)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (entry->num_planes != 1) {
|
|
|
|
GST_FIXME ("Multi allocation formats are not supported yet");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gst_video_info_set_format (out_info, entry->gst_fmt,
|
2020-03-13 18:23:39 +00:00
|
|
|
pix_mp->width, pix_mp->height))
|
2020-02-10 23:02:37 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2020-04-30 18:18:47 +00:00
|
|
|
if (V4L2_TYPE_IS_MULTIPLANAR (fmt->type)) {
|
|
|
|
/* TODO: We don't support multi-allocation yet */
|
|
|
|
g_return_val_if_fail (pix_mp->num_planes == 1, FALSE);
|
|
|
|
out_info->size = pix_mp->plane_fmt[0].sizeimage;
|
|
|
|
} else {
|
|
|
|
out_info->size = pix->sizeimage;
|
|
|
|
}
|
2020-03-13 18:23:39 +00:00
|
|
|
|
|
|
|
for (plane = 0; plane < GST_VIDEO_INFO_N_PLANES (out_info); plane++) {
|
2020-04-30 18:18:47 +00:00
|
|
|
gint stride;
|
|
|
|
|
|
|
|
if (V4L2_TYPE_IS_MULTIPLANAR (fmt->type))
|
|
|
|
stride = extrapolate_stride (out_info->finfo, plane,
|
|
|
|
pix_mp->plane_fmt[0].bytesperline);
|
|
|
|
else
|
|
|
|
stride = extrapolate_stride (out_info->finfo, plane, pix->bytesperline);
|
2020-03-13 18:23:39 +00:00
|
|
|
|
2020-07-15 01:49:33 +00:00
|
|
|
set_stride (out_info, plane, stride);
|
2020-03-13 18:23:39 +00:00
|
|
|
out_info->offset[plane] = offset;
|
|
|
|
|
|
|
|
offset += stride * GST_VIDEO_FORMAT_INFO_SCALE_HEIGHT (out_info->finfo,
|
|
|
|
plane, pix_mp->height);
|
|
|
|
}
|
2020-02-10 23:02:37 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2020-03-13 20:51:27 +00:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_v4l2_format_to_video_format (guint32 pix_fmt, GstVideoFormat * out_format)
|
|
|
|
{
|
|
|
|
struct FormatEntry *entry = lookup_v4l2_fmt (pix_fmt);
|
|
|
|
|
|
|
|
if (!entry)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*out_format = entry->gst_fmt;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_v4l2_format_from_video_format (GstVideoFormat format, guint32 * out_pix_fmt)
|
|
|
|
{
|
|
|
|
struct FormatEntry *entry = lookup_gst_fmt (format);
|
|
|
|
|
|
|
|
if (!entry)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*out_pix_fmt = entry->v4l2_pix_fmt;
|
|
|
|
return TRUE;
|
|
|
|
}
|