rtpqdmdepay: remove pointless check
[platform/upstream/gstreamer.git] / gst / rtp / gstrtpqdmdepay.c
1 /* GStreamer
2  * Copyright (C) <2009> Edward Hervey <bilboed@bilboed.com>
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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <string.h>
25
26 #include <gst/rtp/gstrtpbuffer.h>
27 #include "gstrtpqdmdepay.h"
28
29 GST_DEBUG_CATEGORY (rtpqdm2depay_debug);
30 #define GST_CAT_DEFAULT rtpqdm2depay_debug
31
32 static GstStaticPadTemplate gst_rtp_qdm2_depay_src_template =
33 GST_STATIC_PAD_TEMPLATE ("src",
34     GST_PAD_SRC,
35     GST_PAD_ALWAYS,
36     GST_STATIC_CAPS ("audio/x-qdm2")
37     );
38
39 static GstStaticPadTemplate gst_rtp_qdm2_depay_sink_template =
40 GST_STATIC_PAD_TEMPLATE ("sink",
41     GST_PAD_SINK,
42     GST_PAD_ALWAYS,
43     GST_STATIC_CAPS ("application/x-rtp, "
44         "media = (string) \"audio\", " "encoding-name = (string)\"X-QDM\"")
45     );
46
47 #define gst_rtp_qdm2_depay_parent_class parent_class
48 G_DEFINE_TYPE (GstRtpQDM2Depay, gst_rtp_qdm2_depay,
49     GST_TYPE_RTP_BASE_DEPAYLOAD);
50
51 static const guint8 headheader[20] = {
52   0x0, 0x0, 0x0, 0xc, 0x66, 0x72, 0x6d, 0x61,
53   0x51, 0x44, 0x4d, 0x32, 0x0, 0x0, 0x0, 0x24,
54   0x51, 0x44, 0x43, 0x41
55 };
56
57 static void gst_rtp_qdm2_depay_finalize (GObject * object);
58
59 static GstStateChangeReturn gst_rtp_qdm2_depay_change_state (GstElement *
60     element, GstStateChange transition);
61
62 static GstBuffer *gst_rtp_qdm2_depay_process (GstRTPBaseDepayload * depayload,
63     GstBuffer * buf);
64 gboolean gst_rtp_qdm2_depay_setcaps (GstRTPBaseDepayload * filter,
65     GstCaps * caps);
66
67 static void
68 gst_rtp_qdm2_depay_class_init (GstRtpQDM2DepayClass * klass)
69 {
70   GObjectClass *gobject_class;
71   GstElementClass *gstelement_class;
72   GstRTPBaseDepayloadClass *gstrtpbasedepayload_class;
73
74   gobject_class = (GObjectClass *) klass;
75   gstelement_class = (GstElementClass *) klass;
76   gstrtpbasedepayload_class = (GstRTPBaseDepayloadClass *) klass;
77
78   gstrtpbasedepayload_class->process = gst_rtp_qdm2_depay_process;
79   gstrtpbasedepayload_class->set_caps = gst_rtp_qdm2_depay_setcaps;
80
81   gobject_class->finalize = gst_rtp_qdm2_depay_finalize;
82
83   gstelement_class->change_state = gst_rtp_qdm2_depay_change_state;
84
85   gst_element_class_add_pad_template (gstelement_class,
86       gst_static_pad_template_get (&gst_rtp_qdm2_depay_src_template));
87   gst_element_class_add_pad_template (gstelement_class,
88       gst_static_pad_template_get (&gst_rtp_qdm2_depay_sink_template));
89
90   gst_element_class_set_static_metadata (gstelement_class,
91       "RTP QDM2 depayloader",
92       "Codec/Depayloader/Network/RTP",
93       "Extracts QDM2 audio from RTP packets (no RFC)",
94       "Edward Hervey <bilboed@bilboed.com>");
95 }
96
97 static void
98 gst_rtp_qdm2_depay_init (GstRtpQDM2Depay * rtpqdm2depay)
99 {
100   rtpqdm2depay->adapter = gst_adapter_new ();
101 }
102
103 static void
104 gst_rtp_qdm2_depay_finalize (GObject * object)
105 {
106   GstRtpQDM2Depay *rtpqdm2depay;
107
108   rtpqdm2depay = GST_RTP_QDM2_DEPAY (object);
109
110   g_object_unref (rtpqdm2depay->adapter);
111   rtpqdm2depay->adapter = NULL;
112
113   G_OBJECT_CLASS (parent_class)->finalize (object);
114 }
115
116 /* only on the sink */
117 gboolean
118 gst_rtp_qdm2_depay_setcaps (GstRTPBaseDepayload * filter, GstCaps * caps)
119 {
120   GstStructure *structure = gst_caps_get_structure (caps, 0);
121   gint clock_rate;
122
123   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
124     clock_rate = 44100;         /* default */
125   filter->clock_rate = clock_rate;
126
127   /* will set caps later */
128
129   return TRUE;
130 }
131
132 static void
133 flush_data (GstRtpQDM2Depay * depay)
134 {
135   guint i;
136   guint avail;
137
138   if ((avail = gst_adapter_available (depay->adapter)))
139     gst_adapter_flush (depay->adapter, avail);
140
141   GST_DEBUG ("Flushing %d packets", depay->nbpackets);
142
143   for (i = 0; depay->packets[i]; i++) {
144     QDM2Packet *pack = depay->packets[i];
145     guint32 crc = 0;
146     int i = 0;
147     GstBuffer *buf;
148     guint8 *data;
149
150     /* CRC is the sum of everything (including first bytes) */
151
152     data = pack->data;
153
154     if (G_UNLIKELY (data == NULL))
155       continue;
156
157     /* If the packet size is bigger than 0xff, we need 2 bytes to store the size */
158     if (depay->packetsize > 0xff) {
159       /* Expanded size 0x02 | 0x80 */
160       data[0] = 0x82;
161       GST_WRITE_UINT16_BE (data + 1, depay->packetsize - 3);
162     } else {
163       data[0] = 0x2;
164       data[1] = depay->packetsize - 2;
165     }
166
167     /* Calculate CRC */
168     for (; i < depay->packetsize; i++)
169       crc += data[i];
170
171     GST_DEBUG ("CRC is 0x%x", crc);
172
173     /* Write CRC */
174     if (depay->packetsize > 0xff)
175       GST_WRITE_UINT16_BE (data + 3, crc);
176     else
177       GST_WRITE_UINT16_BE (data + 2, crc);
178
179     GST_MEMDUMP ("Extracted packet", data, depay->packetsize);
180
181     buf = gst_buffer_new ();
182     gst_buffer_append_memory (buf,
183         gst_memory_new_wrapped (0, data, depay->packetsize, 0,
184             depay->packetsize, data, g_free));
185
186     gst_adapter_push (depay->adapter, buf);
187
188     pack->data = NULL;
189   }
190 }
191
192 static void
193 add_packet (GstRtpQDM2Depay * depay, guint32 pid, guint32 len, guint8 * data)
194 {
195   QDM2Packet *packet;
196
197   if (G_UNLIKELY (!depay->configured))
198     return;
199
200   GST_DEBUG ("pid:%d, len:%d, data:%p", pid, len, data);
201
202   if (G_UNLIKELY (depay->packets[pid] == NULL)) {
203     depay->packets[pid] = g_malloc0 (sizeof (QDM2Packet));
204     depay->nbpackets = MAX (depay->nbpackets, pid + 1);
205   }
206   packet = depay->packets[pid];
207
208   GST_DEBUG ("packet:%p", packet);
209   GST_DEBUG ("packet->data:%p", packet->data);
210
211   if (G_UNLIKELY (packet->data == NULL)) {
212     packet->data = g_malloc0 (depay->packetsize);
213     /* We leave space for the header/crc */
214     if (depay->packetsize > 0xff)
215       packet->offs = 5;
216     else
217       packet->offs = 4;
218   }
219
220   /* Finally copy the data over */
221   memcpy (packet->data + packet->offs, data, len);
222   packet->offs += len;
223 }
224
225 static GstBuffer *
226 gst_rtp_qdm2_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
227 {
228   GstRtpQDM2Depay *rtpqdm2depay;
229   GstBuffer *outbuf = NULL;
230   guint16 seq;
231   GstRTPBuffer rtp = { NULL };
232
233   rtpqdm2depay = GST_RTP_QDM2_DEPAY (depayload);
234
235   {
236     gint payload_len;
237     guint8 *payload;
238     guint avail;
239     guint pos = 0;
240
241     gst_rtp_buffer_map (buf, GST_MAP_READ, &rtp);
242     payload_len = gst_rtp_buffer_get_payload_len (&rtp);
243     if (payload_len < 3)
244       goto bad_packet;
245
246     payload = gst_rtp_buffer_get_payload (&rtp);
247     seq = gst_rtp_buffer_get_seq (&rtp);
248     if (G_UNLIKELY (seq != rtpqdm2depay->nextseq)) {
249       GST_DEBUG ("GAP in sequence number, Resetting data !");
250       /* Flush previous data */
251       flush_data (rtpqdm2depay);
252       /* And store new timestamp */
253       rtpqdm2depay->ptimestamp = rtpqdm2depay->timestamp;
254       rtpqdm2depay->timestamp = GST_BUFFER_TIMESTAMP (buf);
255       /* And that previous data will be pushed at the bottom */
256     }
257     rtpqdm2depay->nextseq = seq + 1;
258
259     GST_DEBUG ("Payload size %d 0x%x sequence:%d", payload_len, payload_len,
260         seq);
261
262     GST_MEMDUMP ("Incoming payload", payload, payload_len);
263
264     while (pos < payload_len) {
265       switch (payload[pos]) {
266         case 0x80:{
267           GST_DEBUG ("Unrecognized 0x80 marker, skipping 12 bytes");
268           pos += 12;
269         }
270           break;
271         case 0xff:
272           /* HEADERS */
273           GST_DEBUG ("Headers");
274           /* Store the incoming timestamp */
275           rtpqdm2depay->ptimestamp = rtpqdm2depay->timestamp;
276           rtpqdm2depay->timestamp = GST_BUFFER_TIMESTAMP (buf);
277           /* flush the internal data if needed */
278           flush_data (rtpqdm2depay);
279           if (G_UNLIKELY (!rtpqdm2depay->configured)) {
280             guint8 *ourdata;
281             GstBuffer *codecdata;
282             GstMapInfo cmap;
283             GstCaps *caps;
284
285             /* First bytes are unknown */
286             GST_MEMDUMP ("Header", payload + pos, 32);
287             ourdata = payload + pos + 10;
288             pos += 10;
289             rtpqdm2depay->channs = GST_READ_UINT32_BE (payload + pos + 4);
290             rtpqdm2depay->samplerate = GST_READ_UINT32_BE (payload + pos + 8);
291             rtpqdm2depay->bitrate = GST_READ_UINT32_BE (payload + pos + 12);
292             rtpqdm2depay->blocksize = GST_READ_UINT32_BE (payload + pos + 16);
293             rtpqdm2depay->framesize = GST_READ_UINT32_BE (payload + pos + 20);
294             rtpqdm2depay->packetsize = GST_READ_UINT32_BE (payload + pos + 24);
295             /* 16 bit empty block (0x02 0x00) */
296             pos += 30;
297             GST_DEBUG
298                 ("channs:%d, samplerate:%d, bitrate:%d, blocksize:%d, framesize:%d, packetsize:%d",
299                 rtpqdm2depay->channs, rtpqdm2depay->samplerate,
300                 rtpqdm2depay->bitrate, rtpqdm2depay->blocksize,
301                 rtpqdm2depay->framesize, rtpqdm2depay->packetsize);
302
303             /* Caps */
304             codecdata = gst_buffer_new_and_alloc (48);
305             gst_buffer_map (codecdata, &cmap, GST_MAP_WRITE);
306             memcpy (cmap.data, headheader, 20);
307             memcpy (cmap.data + 20, ourdata, 28);
308             gst_buffer_unmap (codecdata, &cmap);
309
310             caps = gst_caps_new_simple ("audio/x-qdm2",
311                 "samplesize", G_TYPE_INT, 16,
312                 "rate", G_TYPE_INT, rtpqdm2depay->samplerate,
313                 "channels", G_TYPE_INT, rtpqdm2depay->channs,
314                 "codec_data", GST_TYPE_BUFFER, codecdata, NULL);
315             gst_pad_set_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (depayload), caps);
316             gst_caps_unref (caps);
317             rtpqdm2depay->configured = TRUE;
318           } else {
319             GST_DEBUG ("Already configured, skipping headers");
320             pos += 40;
321           }
322           break;
323         default:{
324           /* Shuffled packet contents */
325           guint packetid = payload[pos++];
326           guint packettype = payload[pos++];
327           guint packlen = payload[pos++];
328           guint hsize = 2;
329
330           GST_DEBUG ("Packet id:%d, type:0x%x, len:%d",
331               packetid, packettype, packlen);
332
333           /* Packets bigger than 0xff bytes have a type with the high bit set */
334           if (G_UNLIKELY (packettype & 0x80)) {
335             packettype &= 0x7f;
336             packlen <<= 8;
337             packlen |= payload[pos++];
338             hsize = 3;
339             GST_DEBUG ("Packet id:%d, type:0x%x, len:%d",
340                 packetid, packettype, packlen);
341           }
342
343           if (packettype > 0x7f) {
344             GST_ERROR ("HOUSTON WE HAVE A PROBLEM !!!!");
345           }
346           add_packet (rtpqdm2depay, packetid, packlen + hsize,
347               payload + pos - hsize);
348           pos += packlen;
349         }
350       }
351     }
352
353     GST_DEBUG ("final pos %d", pos);
354
355     avail = gst_adapter_available (rtpqdm2depay->adapter);
356     if (G_UNLIKELY (avail)) {
357       GST_DEBUG ("Pushing out %d bytes of collected data", avail);
358       outbuf = gst_adapter_take_buffer (rtpqdm2depay->adapter, avail);
359       GST_BUFFER_TIMESTAMP (outbuf) = rtpqdm2depay->ptimestamp;
360       GST_DEBUG ("Outgoing buffer timestamp %" GST_TIME_FORMAT,
361           GST_TIME_ARGS (rtpqdm2depay->ptimestamp));
362     }
363   }
364
365   gst_rtp_buffer_unmap (&rtp);
366   return outbuf;
367
368   /* ERRORS */
369 bad_packet:
370   {
371     GST_ELEMENT_WARNING (rtpqdm2depay, STREAM, DECODE,
372         (NULL), ("Packet was too short"));
373     gst_rtp_buffer_unmap (&rtp);
374     return NULL;
375   }
376 }
377
378 static GstStateChangeReturn
379 gst_rtp_qdm2_depay_change_state (GstElement * element,
380     GstStateChange transition)
381 {
382   GstRtpQDM2Depay *rtpqdm2depay;
383   GstStateChangeReturn ret;
384
385   rtpqdm2depay = GST_RTP_QDM2_DEPAY (element);
386
387   switch (transition) {
388     case GST_STATE_CHANGE_NULL_TO_READY:
389       break;
390     case GST_STATE_CHANGE_READY_TO_PAUSED:
391       gst_adapter_clear (rtpqdm2depay->adapter);
392       break;
393     default:
394       break;
395   }
396
397   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
398
399   switch (transition) {
400     case GST_STATE_CHANGE_READY_TO_NULL:
401       break;
402     default:
403       break;
404   }
405   return ret;
406 }
407
408 gboolean
409 gst_rtp_qdm2_depay_plugin_init (GstPlugin * plugin)
410 {
411   GST_DEBUG_CATEGORY_INIT (rtpqdm2depay_debug, "rtpqdm2depay", 0,
412       "RTP QDM2 depayloader");
413
414   return gst_element_register (plugin, "rtpqdm2depay",
415       GST_RANK_SECONDARY, GST_TYPE_RTP_QDM2_DEPAY);
416 }