Line data Source code
1 : /*
2 : * GPAC - Multimedia Framework C SDK
3 : *
4 : * Authors: Deniz Ugur, Romain Bouqueau, Sohaib Larbi
5 : * Copyright (c) Motion Spell
6 : * All rights reserved
7 : *
8 : * This file is part of the GPAC/GStreamer wrapper
9 : *
10 : * This GPAC/GStreamer wrapper is free software; you can redistribute it
11 : * and/or modify it under the terms of the GNU Affero General Public License
12 : * as published by the Free Software Foundation; either version 3, or (at
13 : * your option) any later version.
14 : *
15 : * This GPAC/GStreamer wrapper is distributed in the hope that it will be
16 : * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
17 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 : * GNU Affero General Public License for more details.
19 : *
20 : * You should have received a copy of the GNU Affero General Public
21 : * License along with this library; see the file LICENSE. If not, write to
22 : * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 : *
24 : */
25 :
26 : #include "config.h"
27 :
28 : #include "elements/gstgpacsink.h"
29 : #include "elements/gstgpactf.h"
30 :
31 : static gboolean
32 2 : plugin_init(GstPlugin* plugin)
33 : {
34 2 : gboolean ret = TRUE;
35 2 : ret |= GST_ELEMENT_REGISTER(gpac_tf, plugin);
36 2 : ret |= GST_ELEMENT_REGISTER(gpac_sink, plugin);
37 2 : return ret;
38 : }
39 :
40 2 : GST_PLUGIN_DEFINE(GST_VERSION_MIN_REQUIRED_MAJOR,
41 : GST_VERSION_MIN_REQUIRED_MINOR,
42 : gpac_plugin,
43 : PACKAGE_DESC,
44 : plugin_init,
45 : VERSION,
46 : LICENSE,
47 : PACKAGE_NAME,
48 : PACKAGE_ORIGIN)
|