2007-05-23 22:44:12 +00:00
|
|
|
/* GStreamer
|
2022-02-18 15:14:38 +00:00
|
|
|
* Copyright (C) 2022 Seungha Yang <seungha@centricular.com>
|
2007-05-23 22:44:12 +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.
|
2007-05-23 22:44:12 +00:00
|
|
|
*/
|
|
|
|
|
2022-10-21 18:12:19 +00:00
|
|
|
/**
|
|
|
|
* plugin-directshow:
|
|
|
|
*
|
|
|
|
* Since: 1.22
|
|
|
|
*/
|
|
|
|
|
2007-05-23 22:44:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2022-02-18 15:14:38 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
#include "dshowvideosink.h"
|
|
|
|
#include "gstdshowaudiodec.h"
|
|
|
|
#include "gstdshowvideodec.h"
|
2007-05-23 22:44:12 +00:00
|
|
|
#include "gstdshowaudiosrc.h"
|
|
|
|
#include "gstdshowvideosrc.h"
|
2018-10-16 15:53:20 +00:00
|
|
|
#include "dshowdeviceprovider.h"
|
2007-05-23 22:44:12 +00:00
|
|
|
|
2022-02-18 15:14:38 +00:00
|
|
|
GST_DEBUG_CATEGORY (dshowdec_debug);
|
2018-10-11 15:17:11 +00:00
|
|
|
GST_DEBUG_CATEGORY (dshowsrcwrapper_debug);
|
2022-05-28 21:55:27 +00:00
|
|
|
GST_DEBUG_CATEGORY (dshowvideosrc_debug);
|
2018-10-11 15:17:11 +00:00
|
|
|
|
2007-05-23 22:44:12 +00:00
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2022-02-18 15:14:38 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (dshowdec_debug, "dshowdec", 0, "DirectShow decoder");
|
2018-10-16 15:53:20 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (dshowsrcwrapper_debug, "dshowsrcwrapper", 0,
|
|
|
|
"DirectShow source wrapper");
|
2022-05-28 21:55:27 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (dshowvideosrc_debug, "dshowvideosrc", 0,
|
|
|
|
"Directshow video source");
|
2018-10-16 15:53:20 +00:00
|
|
|
|
2022-02-18 15:14:38 +00:00
|
|
|
dshow_adec_register (plugin);
|
|
|
|
dshow_vdec_register (plugin);
|
2007-05-23 22:44:12 +00:00
|
|
|
|
2022-02-18 15:14:38 +00:00
|
|
|
gst_element_register (plugin, "dshowvideosink",
|
|
|
|
GST_RANK_MARGINAL, GST_TYPE_DSHOWVIDEOSINK);
|
|
|
|
gst_element_register (plugin, "dshowaudiosrc",
|
|
|
|
GST_RANK_NONE, GST_TYPE_DSHOWAUDIOSRC);
|
|
|
|
gst_element_register (plugin, "dshowvideosrc",
|
|
|
|
GST_RANK_NONE, GST_TYPE_DSHOWVIDEOSRC);
|
|
|
|
|
|
|
|
gst_device_provider_register (plugin, "dshowdeviceprovider",
|
|
|
|
GST_RANK_MARGINAL, GST_TYPE_DSHOW_DEVICE_PROVIDER);
|
2018-10-11 15:17:11 +00:00
|
|
|
|
2007-05-23 22:44:12 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2022-02-18 15:14:38 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
directshow,
|
|
|
|
"DirectShow plugin",
|
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|