remove copyright field from plugins
[platform/upstream/gst-plugins-good.git] / ext / libpng / gstpng.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * Filter:
5  * Copyright (C) 2000 Donald A. Graft
6  *
7  * This library is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  * Library General Public License for more details.
11  *
12  * You should have received a copy of the GNU Library General Public
13  * License along with this library; if not, write to the
14  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
15  * Boston, MA 02111-1307, USA.
16  *
17  */
18
19 #include <config.h>
20
21 #include <string.h>
22 #include <gst/gst.h>
23
24 #include "gstpngenc.h"
25
26 static gboolean
27 plugin_init (GstPlugin * plugin)
28 {
29   if (!gst_element_register (plugin, "pngenc", GST_RANK_NONE, GST_TYPE_PNGENC))
30     return FALSE;
31
32   return TRUE;
33 }
34
35 GST_PLUGIN_DEFINE (
36   GST_VERSION_MAJOR,
37   GST_VERSION_MINOR,
38   "png",
39   "PNG plugin library",
40   plugin_init,
41   VERSION,
42   "LGPL",
43   GST_PACKAGE,
44   GST_ORIGIN)