rtp: use boilerplate
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpg729depay.c
1 /* GStreamer
2  *
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Library General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Library General Public License for more details.
12  *
13  * You should have received a copy of the GNU Library General Public
14  * License along with this library; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 02111-1307, USA.
17  */
18
19 #ifdef HAVE_CONFIG_H
20 #  include "config.h"
21 #endif
22
23 #include <gst/rtp/gstrtpbuffer.h>
24
25 #include <stdlib.h>
26 #include <string.h>
27 #include "gstrtpg729depay.h"
28
29 GST_DEBUG_CATEGORY_STATIC (rtpg729depay_debug);
30 #define GST_CAT_DEFAULT (rtpg729depay_debug)
31
32
33 /* references:
34  *
35  * RFC 3551 (4.5.6)
36  */
37
38 /* elementfactory information */
39 static const GstElementDetails gst_rtp_g729depay_details =
40 GST_ELEMENT_DETAILS ("RTP G.729 depayloader",
41     "Codec/Depayloader/Network",
42     "Extracts G.729 audio from RTP packets (RFC 3551)",
43     "Laurent Glayal <spglegle@yahoo.fr>");
44
45 enum
46 {
47   /* FILL ME */
48   LAST_SIGNAL
49 };
50
51 enum
52 {
53   ARG_0
54 };
55
56 /* input is an RTP packet
57  *
58  */
59 static GstStaticPadTemplate gst_rtp_g729_depay_sink_template =
60     GST_STATIC_PAD_TEMPLATE ("sink",
61     GST_PAD_SINK,
62     GST_PAD_ALWAYS,
63     GST_STATIC_CAPS ("application/x-rtp, "
64         "media = (string) \"audio\", "
65         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
66         "clock-rate = (int) 8000, "
67         "encoding-name = (string) \"G729\"; "
68         "application/x-rtp, "
69         "media = (string) \"audio\", "
70         "payload = (int) " GST_RTP_PAYLOAD_G729_STRING ", "
71         "clock-rate = (int) 8000")
72     );
73
74 static GstStaticPadTemplate gst_rtp_g729_depay_src_template =
75 GST_STATIC_PAD_TEMPLATE ("src",
76     GST_PAD_SRC,
77     GST_PAD_ALWAYS,
78     GST_STATIC_CAPS ("audio/G729, " "channels = (int) 1," "rate = (int) 8000")
79     );
80
81 static gboolean gst_rtp_g729_depay_setcaps (GstBaseRTPDepayload * depayload,
82     GstCaps * caps);
83 static GstBuffer *gst_rtp_g729_depay_process (GstBaseRTPDepayload * depayload,
84     GstBuffer * buf);
85
86 GST_BOILERPLATE (GstRtpG729Depay, gst_rtp_g729_depay, GstBaseRTPDepayload,
87     GST_TYPE_BASE_RTP_DEPAYLOAD);
88
89 static void
90 gst_rtp_g729_depay_base_init (gpointer klass)
91 {
92   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
93
94   gst_element_class_add_pad_template (element_class,
95       gst_static_pad_template_get (&gst_rtp_g729_depay_src_template));
96   gst_element_class_add_pad_template (element_class,
97       gst_static_pad_template_get (&gst_rtp_g729_depay_sink_template));
98
99   gst_element_class_set_details (element_class, &gst_rtp_g729depay_details);
100
101   GST_DEBUG_CATEGORY_INIT (rtpg729depay_debug, "rtpg729depay", 0,
102       "G.729 RTP Depayloader");
103 }
104
105 static void
106 gst_rtp_g729_depay_class_init (GstRtpG729DepayClass * klass)
107 {
108   GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
109
110   gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
111
112   gstbasertpdepayload_class->process = gst_rtp_g729_depay_process;
113   gstbasertpdepayload_class->set_caps = gst_rtp_g729_depay_setcaps;
114 }
115
116 static void
117 gst_rtp_g729_depay_init (GstRtpG729Depay * rtpg729depay,
118     GstRtpG729DepayClass * klass)
119 {
120   GstBaseRTPDepayload *depayload;
121
122   depayload = GST_BASE_RTP_DEPAYLOAD (rtpg729depay);
123
124   gst_pad_use_fixed_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload));
125 }
126
127 static gboolean
128 gst_rtp_g729_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
129 {
130   GstStructure *structure;
131   GstCaps *srccaps;
132   GstRtpG729Depay *rtpg729depay;
133   const gchar *params;
134   gint clock_rate, channels;
135   gboolean ret;
136
137   rtpg729depay = GST_RTP_G729_DEPAY (depayload);
138
139   structure = gst_caps_get_structure (caps, 0);
140
141   if (!(params = gst_structure_get_string (structure, "encoding-params")))
142     channels = 1;
143   else {
144     channels = atoi (params);
145   }
146
147   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
148     clock_rate = 8000;
149
150   if (channels != 1)
151     goto wrong_channels;
152
153   if (clock_rate != 8000)
154     goto wrong_clock_rate;
155
156   depayload->clock_rate = clock_rate;
157
158   srccaps = gst_caps_new_simple ("audio/G729",
159       "channels", G_TYPE_INT, channels, "rate", G_TYPE_INT, clock_rate, NULL);
160   ret = gst_pad_set_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload), srccaps);
161   gst_caps_unref (srccaps);
162
163   return ret;
164
165   /* ERRORS */
166 wrong_channels:
167   {
168     GST_DEBUG_OBJECT (rtpg729depay, "expected 1 channel, got %d",
169         rtpg729depay->channels);
170     return FALSE;
171   }
172 wrong_clock_rate:
173   {
174     GST_DEBUG_OBJECT (rtpg729depay, "expected 8000 clock-rate, got %d",
175         clock_rate);
176     return FALSE;
177   }
178 }
179
180
181 static GstBuffer *
182 gst_rtp_g729_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
183 {
184   GstRtpG729Depay *rtpg729depay;
185   GstBuffer *outbuf = NULL;
186   gint payload_len;
187   gboolean marker;
188
189   rtpg729depay = GST_RTP_G729_DEPAY (depayload);
190
191   payload_len = gst_rtp_buffer_get_payload_len (buf);
192
193   /* At least 2 bytes (CNG from G729 Annex B) */
194   if (payload_len < 2) {
195     GST_ELEMENT_WARNING (rtpg729depay, STREAM, DECODE,
196         (NULL), ("G729 RTP payload too small (%d)", payload_len));
197     goto bad_packet;
198   }
199
200   GST_LOG_OBJECT (rtpg729depay, "payload len %d", payload_len);
201
202   if ((payload_len % 10) == 2) {
203     GST_LOG_OBJECT (rtpg729depay, "G729 payload contains CNG frame");
204   }
205
206   outbuf = gst_rtp_buffer_get_payload_buffer (buf);
207   marker = gst_rtp_buffer_get_marker (buf);
208
209   if (marker) {
210     /* marker bit starts talkspurt */
211     GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
212   }
213
214   GST_LOG_OBJECT (depayload, "pushing buffer of size %d",
215       GST_BUFFER_SIZE (outbuf));
216
217   return outbuf;
218
219   /* ERRORS */
220 bad_packet:
221   {
222     /* no fatal error */
223     return NULL;
224   }
225 }
226
227 gboolean
228 gst_rtp_g729_depay_plugin_init (GstPlugin * plugin)
229 {
230   return gst_element_register (plugin, "rtpg729depay",
231       GST_RANK_MARGINAL, GST_TYPE_RTP_G729_DEPAY);
232 }