gstreamer/sys/uvch264/gstuvch264.c

58 lines
1.8 KiB
C
Raw Normal View History

2012-09-10 20:09:26 +00:00
/* GStreamer
*
* uvch264: a plugin for handling UVC compliant H264 encoding cameras
*
* Copyright (C) 2012 Cisco Systems, Inc.
* Author: Youness Alaoui <youness.alaoui@collabora.co.uk>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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.
2012-09-10 20:09:26 +00:00
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <gst/gst.h>
#include "gstuvch264_mjpgdemux.h"
#include "gstuvch264_src.h"
2019-06-03 16:18:13 +00:00
extern GType gst_uvc_h264_device_provider_get_type ();
2012-09-10 20:09:26 +00:00
static gboolean
plugin_init (GstPlugin * plugin)
{
if (!gst_element_register (plugin, "uvch264mjpgdemux", GST_RANK_NONE,
2012-09-10 20:09:26 +00:00
GST_TYPE_UVC_H264_MJPG_DEMUX))
return FALSE;
if (!gst_element_register (plugin, "uvch264src", GST_RANK_NONE,
2012-09-10 20:09:26 +00:00
GST_TYPE_UVC_H264_SRC))
return FALSE;
2019-06-03 16:18:13 +00:00
if (!gst_device_provider_register (plugin, "uvch264deviceprovider",
GST_RANK_PRIMARY, gst_uvc_h264_device_provider_get_type ()))
return FALSE;
2012-09-10 20:09:26 +00:00
return TRUE;
}
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
2013-01-18 21:49:19 +00:00
uvch264,
2012-09-10 20:09:26 +00:00
"UVC compliant H264 encoding cameras plugin",
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)