Merge branch 'master' into 0.11
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtp.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "gstrtpac3depay.h"
25 #include "gstrtpac3pay.h"
26 #include "gstrtpbvdepay.h"
27 #include "gstrtpbvpay.h"
28 #include "gstrtpceltdepay.h"
29 #include "gstrtpceltpay.h"
30 #include "gstrtpdvdepay.h"
31 #include "gstrtpdvpay.h"
32 #include "gstrtpgstdepay.h"
33 #include "gstrtpgstpay.h"
34 #include "gstrtpilbcdepay.h"
35 #include "gstrtpilbcpay.h"
36 #include "gstrtppcmupay.h"
37 #include "gstrtppcmapay.h"
38 #include "gstrtppcmadepay.h"
39 #include "gstrtppcmudepay.h"
40 #include "gstrtpg722depay.h"
41 #include "gstrtpg722pay.h"
42 #include "gstrtpg723depay.h"
43 #include "gstrtpg723pay.h"
44 #include "gstrtpg726depay.h"
45 #include "gstrtpg726pay.h"
46 #include "gstrtpg729depay.h"
47 #include "gstrtpg729pay.h"
48 #include "gstrtpgsmpay.h"
49 #include "gstrtpgsmdepay.h"
50 #include "gstrtpamrpay.h"
51 #include "gstrtpamrdepay.h"
52 #include "gstrtpmpapay.h"
53 #include "gstrtpmpadepay.h"
54 #include "gstrtpmparobustdepay.h"
55 #include "gstrtpmpvdepay.h"
56 #include "gstrtpmpvpay.h"
57 #include "gstrtph263pdepay.h"
58 #include "gstrtph263ppay.h"
59 #include "gstrtph263depay.h"
60 #include "gstrtph263pay.h"
61 #include "gstrtph264depay.h"
62 #include "gstrtph264pay.h"
63 #include "gstrtpj2kdepay.h"
64 #include "gstrtpj2kpay.h"
65 #include "gstrtpjpegdepay.h"
66 #include "gstrtpjpegpay.h"
67 #include "gstrtpL16depay.h"
68 #include "gstrtpL16pay.h"
69 #include "gstasteriskh263.h"
70 #include "gstrtpmp1sdepay.h"
71 #include "gstrtpmp2tdepay.h"
72 #include "gstrtpmp2tpay.h"
73 #include "gstrtpmp4vdepay.h"
74 #include "gstrtpmp4vpay.h"
75 #include "gstrtpmp4adepay.h"
76 #include "gstrtpmp4apay.h"
77 #include "gstrtpmp4gdepay.h"
78 #include "gstrtpmp4gpay.h"
79 #include "gstrtpqcelpdepay.h"
80 #include "gstrtpqdmdepay.h"
81 #include "gstrtpsirenpay.h"
82 #include "gstrtpsirendepay.h"
83 #include "gstrtpspeexpay.h"
84 #include "gstrtpspeexdepay.h"
85 #include "gstrtpsv3vdepay.h"
86 #include "gstrtptheoradepay.h"
87 #include "gstrtptheorapay.h"
88 #include "gstrtpvorbisdepay.h"
89 #include "gstrtpvorbispay.h"
90 #include "gstrtpvrawdepay.h"
91 #include "gstrtpvrawpay.h"
92
93 static gboolean
94 plugin_init (GstPlugin * plugin)
95 {
96   if (!gst_rtp_ac3_depay_plugin_init (plugin))
97     return FALSE;
98
99   if (!gst_rtp_ac3_pay_plugin_init (plugin))
100     return FALSE;
101
102   if (!gst_rtp_bv_depay_plugin_init (plugin))
103     return FALSE;
104
105   if (!gst_rtp_bv_pay_plugin_init (plugin))
106     return FALSE;
107
108   if (!gst_rtp_celt_depay_plugin_init (plugin))
109     return FALSE;
110
111   if (!gst_rtp_celt_pay_plugin_init (plugin))
112     return FALSE;
113
114   if (!gst_rtp_dv_depay_plugin_init (plugin))
115     return FALSE;
116
117   if (!gst_rtp_dv_pay_plugin_init (plugin))
118     return FALSE;
119
120   if (!gst_rtp_gst_depay_plugin_init (plugin))
121     return FALSE;
122
123   if (!gst_rtp_gst_pay_plugin_init (plugin))
124     return FALSE;
125
126   if (!gst_rtp_ilbc_pay_plugin_init (plugin))
127     return FALSE;
128
129   if (!gst_rtp_ilbc_depay_plugin_init (plugin))
130     return FALSE;
131
132   if (!gst_rtp_g722_depay_plugin_init (plugin))
133     return FALSE;
134
135   if (!gst_rtp_g722_pay_plugin_init (plugin))
136     return FALSE;
137
138   if (!gst_rtp_g723_depay_plugin_init (plugin))
139     return FALSE;
140
141   if (!gst_rtp_g723_pay_plugin_init (plugin))
142     return FALSE;
143
144   if (!gst_rtp_g726_depay_plugin_init (plugin))
145     return FALSE;
146
147   if (!gst_rtp_g726_pay_plugin_init (plugin))
148     return FALSE;
149
150   if (!gst_rtp_g729_depay_plugin_init (plugin))
151     return FALSE;
152
153   if (!gst_rtp_g729_pay_plugin_init (plugin))
154     return FALSE;
155
156   if (!gst_rtp_gsm_depay_plugin_init (plugin))
157     return FALSE;
158
159   if (!gst_rtp_gsm_pay_plugin_init (plugin))
160     return FALSE;
161
162   if (!gst_rtp_amr_depay_plugin_init (plugin))
163     return FALSE;
164
165   if (!gst_rtp_amr_pay_plugin_init (plugin))
166     return FALSE;
167
168   if (!gst_rtp_pcma_depay_plugin_init (plugin))
169     return FALSE;
170
171   if (!gst_rtp_pcmu_depay_plugin_init (plugin))
172     return FALSE;
173
174   if (!gst_rtp_pcmu_pay_plugin_init (plugin))
175     return FALSE;
176
177   if (!gst_rtp_pcma_pay_plugin_init (plugin))
178     return FALSE;
179
180   if (!gst_rtp_mpa_depay_plugin_init (plugin))
181     return FALSE;
182
183   if (!gst_rtp_mpa_pay_plugin_init (plugin))
184     return FALSE;
185
186   if (!gst_rtp_mpa_robust_depay_plugin_init (plugin))
187     return FALSE;
188
189   if (!gst_rtp_mpv_depay_plugin_init (plugin))
190     return FALSE;
191
192   if (!gst_rtp_mpv_pay_plugin_init (plugin))
193     return FALSE;
194
195   if (!gst_rtp_h263p_pay_plugin_init (plugin))
196     return FALSE;
197
198   if (!gst_rtp_h263p_depay_plugin_init (plugin))
199     return FALSE;
200
201   if (!gst_rtp_h263_depay_plugin_init (plugin))
202     return FALSE;
203
204   if (!gst_rtp_h263_pay_plugin_init (plugin))
205     return FALSE;
206
207   if (!gst_rtp_h264_depay_plugin_init (plugin))
208     return FALSE;
209
210   if (!gst_rtp_h264_pay_plugin_init (plugin))
211     return FALSE;
212
213   if (!gst_rtp_j2k_depay_plugin_init (plugin))
214     return FALSE;
215
216   if (!gst_rtp_j2k_pay_plugin_init (plugin))
217     return FALSE;
218
219   if (!gst_rtp_jpeg_depay_plugin_init (plugin))
220     return FALSE;
221
222   if (!gst_rtp_jpeg_pay_plugin_init (plugin))
223     return FALSE;
224
225   if (!gst_rtp_L16_pay_plugin_init (plugin))
226     return FALSE;
227
228   if (!gst_rtp_L16_depay_plugin_init (plugin))
229     return FALSE;
230
231   if (!gst_asteriskh263_plugin_init (plugin))
232     return FALSE;
233
234   if (!gst_rtp_mp1s_depay_plugin_init (plugin))
235     return FALSE;
236
237   if (!gst_rtp_mp2t_depay_plugin_init (plugin))
238     return FALSE;
239
240   if (!gst_rtp_mp2t_pay_plugin_init (plugin))
241     return FALSE;
242
243   if (!gst_rtp_mp4v_pay_plugin_init (plugin))
244     return FALSE;
245
246   if (!gst_rtp_mp4v_depay_plugin_init (plugin))
247     return FALSE;
248
249   if (!gst_rtp_mp4a_pay_plugin_init (plugin))
250     return FALSE;
251
252   if (!gst_rtp_mp4a_depay_plugin_init (plugin))
253     return FALSE;
254
255   if (!gst_rtp_mp4g_depay_plugin_init (plugin))
256     return FALSE;
257
258   if (!gst_rtp_mp4g_pay_plugin_init (plugin))
259     return FALSE;
260
261   if (!gst_rtp_qcelp_depay_plugin_init (plugin))
262     return FALSE;
263
264   if (!gst_rtp_qdm2_depay_plugin_init (plugin))
265     return FALSE;
266
267   if (!gst_rtp_siren_pay_plugin_init (plugin))
268     return FALSE;
269
270   if (!gst_rtp_siren_depay_plugin_init (plugin))
271     return FALSE;
272
273   if (!gst_rtp_speex_pay_plugin_init (plugin))
274     return FALSE;
275
276   if (!gst_rtp_speex_depay_plugin_init (plugin))
277     return FALSE;
278
279   if (!gst_rtp_sv3v_depay_plugin_init (plugin))
280     return FALSE;
281
282   if (!gst_rtp_theora_depay_plugin_init (plugin))
283     return FALSE;
284
285   if (!gst_rtp_theora_pay_plugin_init (plugin))
286     return FALSE;
287
288   if (!gst_rtp_vorbis_depay_plugin_init (plugin))
289     return FALSE;
290
291   if (!gst_rtp_vorbis_pay_plugin_init (plugin))
292     return FALSE;
293
294   if (!gst_rtp_vraw_depay_plugin_init (plugin))
295     return FALSE;
296
297   if (!gst_rtp_vraw_pay_plugin_init (plugin))
298     return FALSE;
299
300   return TRUE;
301 }
302
303 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
304     GST_VERSION_MINOR,
305     "rtp",
306     "Real-time protocol plugins",
307     plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);