1
2 /*
3 * gstdvb.c -
4 * Copyright (C) 2007 Alessandro Decina
5 *
6 * Authors:
7 * Alessandro Decina <alessandro.d@gmail.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details.
18 *
19 * You should have received a copy of the GNU Library General Public
20 * License along with this library; if not, write to the
21 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22 * Boston, MA 02110-1301, USA.
23 */
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
27
28 #include <gst/gst-i18n-plugin.h>
29
30 #include "gstdvbelements.h"
31
32 static gboolean
plugin_init(GstPlugin * plugin)33 plugin_init (GstPlugin * plugin)
34 {
35 gboolean ret = FALSE;
36
37 ret |= GST_ELEMENT_REGISTER (dvbsrc, plugin);
38 ret |= GST_ELEMENT_REGISTER (dvbbasebin, plugin);
39
40 return ret;
41 }
42
43 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
44 GST_VERSION_MINOR,
45 dvb,
46 "DVB elements",
47 plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
48