2011-01-27 17:16:14 +00:00
|
|
|
/* GStreamer video parsers
|
|
|
|
* Copyright (C) 2011 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
|
2010-10-09 22:08:39 +00:00
|
|
|
* Copyright (C) 2009 Tim-Philipp Müller <tim centricular net>
|
2011-01-27 17:16:14 +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
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2011-01-27 17:16:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gsth263parse.h"
|
2011-01-28 11:38:19 +00:00
|
|
|
#include "gsth264parse.h"
|
2010-10-09 22:08:39 +00:00
|
|
|
#include "gstdiracparse.h"
|
2011-05-23 10:06:01 +00:00
|
|
|
#include "gstmpegvideoparse.h"
|
2011-09-26 13:39:31 +00:00
|
|
|
#include "gstmpeg4videoparse.h"
|
2013-01-29 03:42:44 +00:00
|
|
|
#include "gstpngparse.h"
|
2016-06-01 23:02:33 +00:00
|
|
|
#include "gstjpeg2000parse.h"
|
2012-01-31 09:58:23 +00:00
|
|
|
#include "gstvc1parse.h"
|
2013-10-09 07:54:14 +00:00
|
|
|
#include "gsth265parse.h"
|
2020-09-09 12:38:33 +00:00
|
|
|
#include "gstvp9parse.h"
|
2020-09-22 06:54:19 +00:00
|
|
|
#include "gstav1parse.h"
|
2011-01-27 17:16:14 +00:00
|
|
|
|
2020-07-01 15:51:36 +00:00
|
|
|
GST_DEBUG_CATEGORY (videoparseutils_debug);
|
|
|
|
|
2011-01-27 17:16:14 +00:00
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2011-10-04 10:31:05 +00:00
|
|
|
gboolean ret = FALSE;
|
2011-01-27 17:16:14 +00:00
|
|
|
|
2020-07-01 15:51:36 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (videoparseutils_debug, "videoparseutils", 0,
|
|
|
|
"video parse utilities");
|
|
|
|
|
2011-10-04 10:31:05 +00:00
|
|
|
ret |= gst_element_register (plugin, "h263parse",
|
2011-09-07 11:46:49 +00:00
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_H263_PARSE);
|
2011-10-04 10:31:05 +00:00
|
|
|
ret |= gst_element_register (plugin, "h264parse",
|
2011-09-07 09:14:36 +00:00
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_H264_PARSE);
|
2011-10-04 10:31:05 +00:00
|
|
|
ret |= gst_element_register (plugin, "diracparse",
|
2010-10-09 22:08:39 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_DIRAC_PARSE);
|
2011-10-04 10:31:05 +00:00
|
|
|
ret |= gst_element_register (plugin, "mpegvideoparse",
|
2011-09-07 11:46:49 +00:00
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_MPEGVIDEO_PARSE);
|
2011-09-26 13:39:31 +00:00
|
|
|
ret |= gst_element_register (plugin, "mpeg4videoparse",
|
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_MPEG4VIDEO_PARSE);
|
2013-01-29 03:42:44 +00:00
|
|
|
ret |= gst_element_register (plugin, "pngparse",
|
|
|
|
GST_RANK_PRIMARY, GST_TYPE_PNG_PARSE);
|
2016-06-01 23:02:33 +00:00
|
|
|
ret |= gst_element_register (plugin, "jpeg2000parse",
|
|
|
|
GST_RANK_PRIMARY, GST_TYPE_JPEG2000_PARSE);
|
2013-10-09 07:54:14 +00:00
|
|
|
ret |= gst_element_register (plugin, "h265parse",
|
|
|
|
GST_RANK_SECONDARY, GST_TYPE_H265_PARSE);
|
2012-01-31 09:58:23 +00:00
|
|
|
ret |= gst_element_register (plugin, "vc1parse",
|
2012-10-23 10:10:14 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_VC1_PARSE);
|
2011-01-27 17:16:14 +00:00
|
|
|
|
2020-09-09 12:38:33 +00:00
|
|
|
/**
|
|
|
|
* element-vp9parse:
|
|
|
|
*
|
|
|
|
* Since: 1.20
|
|
|
|
*/
|
|
|
|
ret |= gst_element_register (plugin, "vp9parse",
|
|
|
|
GST_RANK_SECONDARY, GST_TYPE_VP9_PARSE);
|
|
|
|
|
2020-09-22 06:54:19 +00:00
|
|
|
/**
|
|
|
|
* element-av1parse:
|
|
|
|
*
|
|
|
|
* Since: 1.20
|
|
|
|
*/
|
|
|
|
ret |= gst_element_register (plugin, "av1parse",
|
|
|
|
GST_RANK_SECONDARY, GST_TYPE_AV1_PARSE);
|
|
|
|
|
2011-01-27 17:16:14 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 16:02:56 +00:00
|
|
|
videoparsersbad,
|
2011-01-27 17:16:14 +00:00
|
|
|
"videoparsers",
|
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|