1 /*
2  * GStreamer
3  * Copyright 2005 Thomas Vander Stichele <thomas@apestaart.org>
4  * Copyright 2005 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
5  * Copyright 2008 Vincent Penquerc'h <ogg.k.ogg.k@googlemail.com>
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a
8  * copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation
10  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11  * and/or sell copies of the Software, and to permit persons to whom the
12  * Software is furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23  * DEALINGS IN THE SOFTWARE.
24  *
25  * Alternatively, the contents of this file may be used under the
26  * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
27  * which case the following provisions apply instead of the ones
28  * mentioned above:
29  *
30  * This library is free software; you can redistribute it and/or
31  * modify it under the terms of the GNU Library General Public
32  * License as published by the Free Software Foundation; either
33  * version 2 of the License, or (at your option) any later version.
34  *
35  * This library is distributed in the hope that it will be useful,
36  * but WITHOUT ANY WARRANTY; without even the implied warranty of
37  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
38  * Library General Public License for more details.
39  *
40  * You should have received a copy of the GNU Library General Public
41  * License along with this library; if not, write to the
42  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
43  * Boston, MA 02110-1301, USA.
44  */
45 
46 #ifdef HAVE_CONFIG_H
47 #include "config.h"
48 #endif
49 
50 #include <string.h>
51 
52 #include <gst/gst.h>
53 
54 #include "gstkate.h"
55 #include "gstkatedec.h"
56 #include "gstkateenc.h"
57 #include "gstkateparse.h"
58 #include "gstkatetag.h"
59 
60 #undef HAVE_TIGER
61 #ifdef HAVE_TIGER
62 #include "gstkatetiger.h"
63 #endif
64 
65 GST_DEBUG_CATEGORY (gst_katedec_debug);
66 GST_DEBUG_CATEGORY (gst_kateenc_debug);
67 GST_DEBUG_CATEGORY (gst_kateparse_debug);
68 GST_DEBUG_CATEGORY (gst_katetag_debug);
69 GST_DEBUG_CATEGORY (gst_kateutil_debug);
70 #ifdef HAVE_TIGER
71 GST_DEBUG_CATEGORY (gst_katetiger_debug);
72 #endif
73 
74 static gboolean
plugin_init(GstPlugin * plugin)75 plugin_init (GstPlugin * plugin)
76 {
77   GST_DEBUG_CATEGORY_INIT (gst_katedec_debug, "katedec", 0, "Kate decoder");
78   GST_DEBUG_CATEGORY_INIT (gst_kateenc_debug, "kateenc", 0, "Kate encoder");
79   GST_DEBUG_CATEGORY_INIT (gst_kateparse_debug, "kateparse", 0, "Kate parser");
80   GST_DEBUG_CATEGORY_INIT (gst_katetag_debug, "katetag", 0, "Kate tagger");
81   GST_DEBUG_CATEGORY_INIT (gst_kateutil_debug, "kateutil", 0,
82       "Kate utility functions");
83 #ifdef HAVE_TIGER
84   GST_DEBUG_CATEGORY_INIT (gst_katetiger_debug, "tiger", 0,
85       "Kate Tiger renderer");
86 #endif
87 
88   if (!gst_element_register (plugin, "katedec", GST_RANK_PRIMARY,
89           GST_TYPE_KATE_DEC))
90     return FALSE;
91 
92   if (!gst_element_register (plugin, "kateenc", GST_RANK_NONE,
93           GST_TYPE_KATE_ENC))
94     return FALSE;
95 
96   if (!gst_element_register (plugin, "kateparse", GST_RANK_NONE,
97           GST_TYPE_KATE_PARSE))
98     return FALSE;
99 
100   if (!gst_element_register (plugin, "katetag", GST_RANK_NONE,
101           GST_TYPE_KATE_TAG))
102     return FALSE;
103 
104 #ifdef HAVE_TIGER
105   if (!gst_element_register (plugin, "tiger", GST_RANK_PRIMARY,
106           GST_TYPE_KATE_TIGER))
107     return FALSE;
108 #endif
109 
110   return TRUE;
111 }
112 
113 /* this is the structure that gstreamer looks for to register plugins
114  */
115 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
116     GST_VERSION_MINOR,
117     kate,
118     "Kate plugin",
119     plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
120