upload tizen1.0 source
[framework/multimedia/gst-plugins-good0.10.git] / gst / rtp / gstrtpg726depay.c
1 /* GStreamer
2  * Copyright (C) 1999 Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) 2005 Edgard Lima <edgard.lima@indt.org.br>
4  * Copyright (C) 2005 Zeeshan Ali <zeenix@gmail.com>
5  * Copyright (C) 2008 Axis Communications <dev-gstreamer@axis.com>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <gst/rtp/gstrtpbuffer.h>
31
32 #include "gstrtpg726depay.h"
33
34 GST_DEBUG_CATEGORY_STATIC (rtpg726depay_debug);
35 #define GST_CAT_DEFAULT (rtpg726depay_debug)
36
37 #define DEFAULT_BIT_RATE 32000
38 #define SAMPLE_RATE 8000
39 #define LAYOUT_G726 "g726"
40
41 /* RtpG726Depay signals and args */
42 enum
43 {
44   /* FILL ME */
45   LAST_SIGNAL
46 };
47
48 #define DEFAULT_FORCE_AAL2      TRUE
49
50 enum
51 {
52   PROP_0,
53   PROP_FORCE_AAL2,
54   PROP_LAST
55 };
56
57 static GstStaticPadTemplate gst_rtp_g726_depay_sink_template =
58     GST_STATIC_PAD_TEMPLATE ("sink",
59     GST_PAD_SINK,
60     GST_PAD_ALWAYS,
61     GST_STATIC_CAPS ("application/x-rtp, "
62         "media = (string) \"audio\", "
63         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
64         "encoding-name = (string) { \"G726\", \"G726-16\", \"G726-24\", \"G726-32\", \"G726-40\", "
65         "\"AAL2-G726-16\", \"AAL2-G726-24\", \"AAL2-G726-32\", \"AAL2-G726-40\" }, "
66         "clock-rate = (int) 8000;")
67     );
68
69 static GstStaticPadTemplate gst_rtp_g726_depay_src_template =
70 GST_STATIC_PAD_TEMPLATE ("src",
71     GST_PAD_SRC,
72     GST_PAD_ALWAYS,
73     GST_STATIC_CAPS ("audio/x-adpcm, "
74         "channels = (int) 1, "
75         "rate = (int) 8000, "
76         "bitrate = (int) { 16000, 24000, 32000, 40000 }, "
77         "layout = (string) \"g726\"")
78     );
79
80 static void gst_rtp_g726_depay_get_property (GObject * object, guint prop_id,
81     GValue * value, GParamSpec * pspec);
82 static void gst_rtp_g726_depay_set_property (GObject * object, guint prop_id,
83     const GValue * value, GParamSpec * pspec);
84
85 static GstBuffer *gst_rtp_g726_depay_process (GstBaseRTPDepayload * depayload,
86     GstBuffer * buf);
87 static gboolean gst_rtp_g726_depay_setcaps (GstBaseRTPDepayload * depayload,
88     GstCaps * caps);
89
90 GST_BOILERPLATE (GstRtpG726Depay, gst_rtp_g726_depay, GstBaseRTPDepayload,
91     GST_TYPE_BASE_RTP_DEPAYLOAD);
92
93 static void
94 gst_rtp_g726_depay_base_init (gpointer klass)
95 {
96   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
97
98   gst_element_class_add_pad_template (element_class,
99       gst_static_pad_template_get (&gst_rtp_g726_depay_src_template));
100   gst_element_class_add_pad_template (element_class,
101       gst_static_pad_template_get (&gst_rtp_g726_depay_sink_template));
102   gst_element_class_set_details_simple (element_class, "RTP G.726 depayloader",
103       "Codec/Depayloader/Network/RTP",
104       "Extracts G.726 audio from RTP packets",
105       "Axis Communications <dev-gstreamer@axis.com>");
106 }
107
108 static void
109 gst_rtp_g726_depay_class_init (GstRtpG726DepayClass * klass)
110 {
111   GObjectClass *gobject_class;
112   GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
113
114   gobject_class = (GObjectClass *) klass;
115   gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
116
117   gobject_class->set_property = gst_rtp_g726_depay_set_property;
118   gobject_class->get_property = gst_rtp_g726_depay_get_property;
119
120   g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_FORCE_AAL2,
121       g_param_spec_boolean ("force-aal2", "Force AAL2",
122           "Force AAL2 decoding for compatibility with bad payloaders",
123           DEFAULT_FORCE_AAL2, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
124
125   gstbasertpdepayload_class->process = gst_rtp_g726_depay_process;
126   gstbasertpdepayload_class->set_caps = gst_rtp_g726_depay_setcaps;
127
128   GST_DEBUG_CATEGORY_INIT (rtpg726depay_debug, "rtpg726depay", 0,
129       "G.726 RTP Depayloader");
130 }
131
132 static void
133 gst_rtp_g726_depay_init (GstRtpG726Depay * rtpG726depay,
134     GstRtpG726DepayClass * klass)
135 {
136   GstBaseRTPDepayload *depayload;
137
138   depayload = GST_BASE_RTP_DEPAYLOAD (rtpG726depay);
139
140   gst_pad_use_fixed_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload));
141
142   rtpG726depay->force_aal2 = DEFAULT_FORCE_AAL2;
143 }
144
145 static gboolean
146 gst_rtp_g726_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
147 {
148   GstCaps *srccaps;
149   GstStructure *structure;
150   gboolean ret;
151   gint clock_rate;
152   const gchar *encoding_name;
153   GstRtpG726Depay *depay;
154
155   depay = GST_RTP_G726_DEPAY (depayload);
156
157   structure = gst_caps_get_structure (caps, 0);
158
159   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
160     clock_rate = 8000;          /* default */
161   depayload->clock_rate = clock_rate;
162
163   depay->aal2 = FALSE;
164   encoding_name = gst_structure_get_string (structure, "encoding-name");
165   if (encoding_name == NULL || g_ascii_strcasecmp (encoding_name, "G726") == 0) {
166     depay->bitrate = DEFAULT_BIT_RATE;
167   } else {
168     if (g_str_has_prefix (encoding_name, "AAL2-")) {
169       depay->aal2 = TRUE;
170       encoding_name += 5;
171     }
172     if (g_ascii_strcasecmp (encoding_name, "G726-16") == 0) {
173       depay->bitrate = 16000;
174     } else if (g_ascii_strcasecmp (encoding_name, "G726-24") == 0) {
175       depay->bitrate = 24000;
176     } else if (g_ascii_strcasecmp (encoding_name, "G726-32") == 0) {
177       depay->bitrate = 32000;
178     } else if (g_ascii_strcasecmp (encoding_name, "G726-40") == 0) {
179       depay->bitrate = 40000;
180     } else
181       goto unknown_encoding;
182   }
183
184   GST_DEBUG ("RTP G.726 depayloader, bitrate set to %d\n", depay->bitrate);
185
186   srccaps = gst_caps_new_simple ("audio/x-adpcm",
187       "channels", G_TYPE_INT, 1,
188       "rate", G_TYPE_INT, clock_rate,
189       "bitrate", G_TYPE_INT, depay->bitrate,
190       "layout", G_TYPE_STRING, LAYOUT_G726, NULL);
191
192   ret = gst_pad_set_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload), srccaps);
193   gst_caps_unref (srccaps);
194
195   return ret;
196
197   /* ERRORS */
198 unknown_encoding:
199   {
200     GST_WARNING ("Could not determine bitrate from encoding-name (%s)",
201         encoding_name);
202     return FALSE;
203   }
204 }
205
206
207 static GstBuffer *
208 gst_rtp_g726_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
209 {
210   GstRtpG726Depay *depay;
211   GstBuffer *outbuf = NULL;
212   gboolean marker;
213
214   depay = GST_RTP_G726_DEPAY (depayload);
215
216   marker = gst_rtp_buffer_get_marker (buf);
217
218   GST_DEBUG ("process : got %d bytes, mark %d ts %u seqn %d",
219       GST_BUFFER_SIZE (buf), marker,
220       gst_rtp_buffer_get_timestamp (buf), gst_rtp_buffer_get_seq (buf));
221
222   if (depay->aal2 || depay->force_aal2) {
223     /* AAL2, we can just copy the bytes */
224     outbuf = gst_rtp_buffer_get_payload_buffer (buf);
225   } else {
226     guint8 *in, *out, tmp;
227     guint len;
228
229     in = gst_rtp_buffer_get_payload (buf);
230     len = gst_rtp_buffer_get_payload_len (buf);
231
232     if (gst_buffer_is_writable (buf)) {
233       outbuf = gst_rtp_buffer_get_payload_buffer (buf);
234     } else {
235       GstBuffer *copy;
236
237       /* copy buffer */
238       copy = gst_buffer_copy (buf);
239       outbuf = gst_rtp_buffer_get_payload_buffer (copy);
240       gst_buffer_unref (copy);
241     }
242     out = GST_BUFFER_DATA (outbuf);
243
244     /* we need to reshuffle the bytes, input is always of the form
245      * A B C D ... with the number of bits depending on the bitrate. */
246     switch (depay->bitrate) {
247       case 16000:
248       {
249         /*  0               
250          *  0 1 2 3 4 5 6 7 
251          * +-+-+-+-+-+-+-+-+-
252          * |D D|C C|B B|A A| ...
253          * |0 1|0 1|0 1|0 1|
254          * +-+-+-+-+-+-+-+-+-
255          */
256         while (len > 0) {
257           tmp = *in++;
258           *out++ = ((tmp & 0xc0) >> 6) |
259               ((tmp & 0x30) >> 2) | ((tmp & 0x0c) << 2) | ((tmp & 0x03) << 6);
260           len--;
261         }
262         break;
263       }
264       case 24000:
265       {
266         /*  0                   1                   2
267          *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
268          * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
269          * |C C|B B B|A A A|F|E E E|D D D|C|H H H|G G G|F F| ...
270          * |1 2|0 1 2|0 1 2|2|0 1 2|0 1 2|0|0 1 2|0 1 2|0 1|
271          * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
272          */
273         while (len > 2) {
274           tmp = *in++;
275           *out++ = ((tmp & 0xe0) >> 5) |
276               ((tmp & 0x1c) << 1) | ((tmp & 0x03) << 6);
277           tmp = *in++;
278           *out++ = ((tmp & 0x80) >> 7) |
279               ((tmp & 0x70) >> 3) | ((tmp & 0x0e) << 4) | ((tmp & 0x01) << 7);
280           tmp = *in++;
281           *out++ = ((tmp & 0xc0) >> 6) |
282               ((tmp & 0x38) >> 1) | ((tmp & 0x07) << 5);
283           len -= 3;
284         }
285         break;
286       }
287       case 32000:
288       {
289         /*  0                   1
290          *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
291          * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
292          * |B B B B|A A A A|D D D D|C C C C| ...
293          * |0 1 2 3|0 1 2 3|0 1 2 3|0 1 2 3|
294          * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
295          */
296         while (len > 0) {
297           tmp = *in++;
298           *out++ = ((tmp & 0xf0) >> 4) | ((tmp & 0x0f) << 4);
299           len--;
300         }
301         break;
302       }
303       case 40000:
304       {
305         /*  0                   1                   2                   3                   4
306          *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0
307          * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
308          * |B B B|A A A A A|D|C C C C C|B B|E E E E|D D D D|G G|F F F F F|E|H H H H H|G G G|
309          * |2 3 4|0 1 2 3 4|4|0 1 2 3 4|0 1|1 2 3 4|0 1 2 3|3 4|0 1 2 3 4|0|0 1 2 3 4|0 1 2|   
310          * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
311          */
312         while (len > 4) {
313           tmp = *in++;
314           *out++ = ((tmp & 0xf8) >> 3) | ((tmp & 0x07) << 5);
315           tmp = *in++;
316           *out++ = ((tmp & 0xc0) >> 6) |
317               ((tmp & 0x3e) << 1) | ((tmp & 0x01) << 7);
318           tmp = *in++;
319           *out++ = ((tmp & 0xf0) >> 4) | ((tmp & 0x0f) << 4);
320           tmp = *in++;
321           *out++ = ((tmp & 0x80) >> 7) |
322               ((tmp & 0x7c) >> 1) | ((tmp & 0x03) << 6);
323           tmp = *in++;
324           *out++ = ((tmp & 0xe0) >> 5) | ((tmp & 0x1f) << 3);
325           len -= 5;
326         }
327         break;
328       }
329     }
330   }
331
332   if (marker) {
333     /* mark start of talkspurt with discont */
334     GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
335   }
336
337   return outbuf;
338 }
339
340 static void
341 gst_rtp_g726_depay_set_property (GObject * object, guint prop_id,
342     const GValue * value, GParamSpec * pspec)
343 {
344   GstRtpG726Depay *rtpg726depay;
345
346   rtpg726depay = GST_RTP_G726_DEPAY (object);
347
348   switch (prop_id) {
349     case PROP_FORCE_AAL2:
350       rtpg726depay->force_aal2 = g_value_get_boolean (value);
351       break;
352     default:
353       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
354       break;
355   }
356 }
357
358 static void
359 gst_rtp_g726_depay_get_property (GObject * object, guint prop_id,
360     GValue * value, GParamSpec * pspec)
361 {
362   GstRtpG726Depay *rtpg726depay;
363
364   rtpg726depay = GST_RTP_G726_DEPAY (object);
365
366   switch (prop_id) {
367     case PROP_FORCE_AAL2:
368       g_value_set_boolean (value, rtpg726depay->force_aal2);
369       break;
370     default:
371       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
372       break;
373   }
374 }
375
376 gboolean
377 gst_rtp_g726_depay_plugin_init (GstPlugin * plugin)
378 {
379   return gst_element_register (plugin, "rtpg726depay",
380       GST_RANK_SECONDARY, GST_TYPE_RTP_G726_DEPAY);
381 }