2016-07-05 17:58:34 +02:00
|
|
|
/* Simple Plugin API
|
|
|
|
|
* Copyright (C) 2016 Wim Taymans <wim.taymans@gmail.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 <stdint.h>
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include <spa/video/raw.h>
|
|
|
|
|
#include <spa/video/format.h>
|
2017-02-24 09:28:18 +01:00
|
|
|
#include <spa/format-builder.h>
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
uint32_t key;
|
|
|
|
|
uint32_t type;
|
|
|
|
|
off_t offset;
|
|
|
|
|
} ParseInfo;
|
|
|
|
|
|
|
|
|
|
static const ParseInfo raw_parse_info[] = {
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_INFO, SPA_POD_TYPE_BYTES, offsetof (SpaVideoInfo, info.raw) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_FORMAT, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.format) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_SIZE, SPA_POD_TYPE_RECTANGLE, offsetof (SpaVideoInfo, info.raw.size) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_FRAMERATE, SPA_POD_TYPE_FRACTION, offsetof (SpaVideoInfo, info.raw.framerate) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_MAX_FRAMERATE, SPA_POD_TYPE_FRACTION, offsetof (SpaVideoInfo, info.raw.max_framerate) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_VIEWS, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.views) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_INTERLACE_MODE, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.interlace_mode) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_PIXEL_ASPECT_RATIO, SPA_POD_TYPE_FRACTION, offsetof (SpaVideoInfo, info.raw.pixel_aspect_ratio) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_MULTIVIEW_MODE, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.multiview_mode) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_MULTIVIEW_FLAGS, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.multiview_flags) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_CHROMA_SITE, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.chroma_site) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_COLOR_RANGE, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.color_range) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_COLOR_MATRIX, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.color_matrix) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_TRANSFER_FUNCTION, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.transfer_function) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_COLOR_PRIMARIES, SPA_POD_TYPE_INT, offsetof (SpaVideoInfo, info.raw.color_primaries) },
|
|
|
|
|
{ 0, }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const ParseInfo h264_parse_info[] = {
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_INFO, SPA_POD_TYPE_BYTES, offsetof (SpaVideoInfo, info.h264) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_SIZE, SPA_POD_TYPE_RECTANGLE, offsetof (SpaVideoInfo, info.h264.size) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_FRAMERATE, SPA_POD_TYPE_FRACTION, offsetof (SpaVideoInfo, info.h264.framerate) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_MAX_FRAMERATE, SPA_POD_TYPE_FRACTION, offsetof (SpaVideoInfo, info.h264.max_framerate) },
|
|
|
|
|
{ 0, }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const ParseInfo mjpg_parse_info[] = {
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_INFO, SPA_POD_TYPE_BYTES, offsetof (SpaVideoInfo, info.h264) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_SIZE, SPA_POD_TYPE_RECTANGLE, offsetof (SpaVideoInfo, info.h264.size) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_FRAMERATE, SPA_POD_TYPE_FRACTION, offsetof (SpaVideoInfo, info.h264.framerate) },
|
|
|
|
|
{ SPA_PROP_ID_VIDEO_MAX_FRAMERATE, SPA_POD_TYPE_FRACTION, offsetof (SpaVideoInfo, info.h264.max_framerate) },
|
|
|
|
|
{ 0, }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const ParseInfo *
|
|
|
|
|
parse_info_find (const ParseInfo *info, uint32_t key, uint32_t type)
|
2016-07-05 17:58:34 +02:00
|
|
|
{
|
2017-02-24 09:28:18 +01:00
|
|
|
while (info->key) {
|
|
|
|
|
if (info->key == key && info->type == type)
|
|
|
|
|
return info;
|
|
|
|
|
info++;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
2016-08-26 17:43:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SpaResult
|
2017-02-24 09:28:18 +01:00
|
|
|
spa_format_video_parse (const SpaFormat *format,
|
|
|
|
|
SpaVideoInfo *info)
|
2016-08-26 17:43:48 +02:00
|
|
|
{
|
2017-02-24 09:28:18 +01:00
|
|
|
SpaPODProp *prop;
|
|
|
|
|
const ParseInfo *pinfo, *find;
|
2016-08-26 20:26:34 +02:00
|
|
|
|
2017-02-27 17:07:48 +01:00
|
|
|
if (format->body.media_type != SPA_MEDIA_TYPE_VIDEO)
|
2017-02-24 09:28:18 +01:00
|
|
|
return SPA_RESULT_INVALID_MEDIA_TYPE;
|
2016-08-26 20:26:34 +02:00
|
|
|
|
2017-02-27 17:07:48 +01:00
|
|
|
switch (format->body.media_subtype) {
|
2016-08-26 20:26:34 +02:00
|
|
|
case SPA_MEDIA_SUBTYPE_RAW:
|
2017-02-24 09:28:18 +01:00
|
|
|
pinfo = raw_parse_info;
|
2016-08-26 20:26:34 +02:00
|
|
|
break;
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_H264:
|
2017-02-24 09:28:18 +01:00
|
|
|
pinfo = h264_parse_info;
|
2016-09-07 16:25:31 +02:00
|
|
|
break;
|
2016-08-26 20:26:34 +02:00
|
|
|
case SPA_MEDIA_SUBTYPE_MJPG:
|
2017-02-24 09:28:18 +01:00
|
|
|
pinfo = mjpg_parse_info;
|
2016-08-26 20:26:34 +02:00
|
|
|
break;
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_DV:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_MPEGTS:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_H263:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_MPEG1:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_MPEG2:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_MPEG4:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_XVID:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_VC1:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_VP8:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_VP9:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_JPEG:
|
|
|
|
|
case SPA_MEDIA_SUBTYPE_BAYER:
|
|
|
|
|
return SPA_RESULT_NOT_IMPLEMENTED;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return SPA_RESULT_INVALID_ARGUMENTS;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-27 17:07:48 +01:00
|
|
|
info->media_type = format->body.media_type;
|
|
|
|
|
info->media_subtype = format->body.media_subtype;
|
2016-07-05 17:58:34 +02:00
|
|
|
|
2017-02-27 17:07:48 +01:00
|
|
|
SPA_POD_FOREACH (format, prop) {
|
2017-02-24 09:28:18 +01:00
|
|
|
if ((find = parse_info_find (pinfo, prop->body.key, prop->body.value.type))) {
|
|
|
|
|
memcpy (SPA_MEMBER (info, find->offset, void),
|
|
|
|
|
SPA_POD_BODY (&prop->body.value),
|
|
|
|
|
SPA_POD_BODY_SIZE (&prop->body.value));
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-07-05 17:58:34 +02:00
|
|
|
return SPA_RESULT_OK;
|
2017-02-20 17:22:46 +01:00
|
|
|
}
|
|
|
|
|
|
2017-02-10 10:17:07 +01:00
|
|
|
SpaResult
|
2017-02-20 17:22:46 +01:00
|
|
|
spa_format_filter (const SpaFormat *format,
|
|
|
|
|
const SpaFormat *filter,
|
2017-02-24 09:28:18 +01:00
|
|
|
SpaPODBuilder *result)
|
2017-02-10 10:17:07 +01:00
|
|
|
{
|
2017-02-24 09:28:18 +01:00
|
|
|
if (format == NULL || result == NULL)
|
|
|
|
|
return SPA_RESULT_INVALID_ARGUMENTS;
|
2017-02-10 10:17:07 +01:00
|
|
|
|
2017-02-20 17:22:46 +01:00
|
|
|
if (filter == NULL) {
|
2017-02-27 17:07:48 +01:00
|
|
|
spa_pod_builder_raw (result, format, SPA_POD_SIZE (format), true);
|
2017-02-10 10:17:07 +01:00
|
|
|
return SPA_RESULT_OK;
|
2017-02-20 17:22:46 +01:00
|
|
|
}
|
|
|
|
|
|
2017-02-27 17:07:48 +01:00
|
|
|
if (filter->body.media_type != format->body.media_type ||
|
|
|
|
|
filter->body.media_subtype != format->body.media_subtype)
|
2017-02-20 17:22:46 +01:00
|
|
|
return SPA_RESULT_INVALID_MEDIA_TYPE;
|
2017-02-10 10:17:07 +01:00
|
|
|
|
2017-02-27 17:07:48 +01:00
|
|
|
spa_pod_builder_raw (result, format, SPA_POD_SIZE (format), true);
|
2017-02-10 10:17:07 +01:00
|
|
|
|
2017-02-20 17:22:46 +01:00
|
|
|
return SPA_RESULT_OK;
|
2017-02-10 10:17:07 +01:00
|
|
|
}
|