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
|
2012-11-03 20:38:00 +00:00
|
|
|
* 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"
|
2021-03-26 10:00:50 +00:00
|
|
|
#include "gstuvch264deviceprovider.h"
|
2019-06-03 16:18:13 +00:00
|
|
|
|
|
|
|
|
2012-09-10 20:09:26 +00:00
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2021-03-26 10:00:50 +00:00
|
|
|
gboolean ret = FALSE;
|
2012-09-10 20:09:26 +00:00
|
|
|
|
2021-03-26 10:00:50 +00:00
|
|
|
ret |= GST_ELEMENT_REGISTER (uvch264mjpgdemux, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (uvch264src, plugin);
|
|
|
|
ret |= GST_DEVICE_PROVIDER_REGISTER (uvch264deviceprovider, plugin);
|
2019-06-03 16:18:13 +00:00
|
|
|
|
2021-03-26 10:00:50 +00:00
|
|
|
return ret;
|
2012-09-10 20:09:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|