Merge branch 'master' into 0.11
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpac3pay.c
1 /* GStreamer
2  * Copyright (C) <2010> Wim Taymans <wim.taymans@gmail.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., 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 <string.h>
25
26 #include <gst/rtp/gstrtpbuffer.h>
27
28 #include "gstrtpac3pay.h"
29
30 GST_DEBUG_CATEGORY_STATIC (rtpac3pay_debug);
31 #define GST_CAT_DEFAULT (rtpac3pay_debug)
32
33 static GstStaticPadTemplate gst_rtp_ac3_pay_sink_template =
34     GST_STATIC_PAD_TEMPLATE ("sink",
35     GST_PAD_SINK,
36     GST_PAD_ALWAYS,
37     GST_STATIC_CAPS ("audio/ac3; " "audio/x-ac3; ")
38     );
39
40 static GstStaticPadTemplate gst_rtp_ac3_pay_src_template =
41 GST_STATIC_PAD_TEMPLATE ("src",
42     GST_PAD_SRC,
43     GST_PAD_ALWAYS,
44     GST_STATIC_CAPS ("application/x-rtp, "
45         "media = (string) \"audio\", "
46         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
47         "clock-rate = (int) { 32000, 44100, 48000 }, "
48         "encoding-name = (string) \"AC3\"")
49     );
50
51 static void gst_rtp_ac3_pay_finalize (GObject * object);
52
53 static GstStateChangeReturn gst_rtp_ac3_pay_change_state (GstElement * element,
54     GstStateChange transition);
55
56 static gboolean gst_rtp_ac3_pay_setcaps (GstBaseRTPPayload * payload,
57     GstCaps * caps);
58 static gboolean gst_rtp_ac3_pay_handle_event (GstBaseRTPPayload * payload,
59     GstEvent * event);
60 static GstFlowReturn gst_rtp_ac3_pay_flush (GstRtpAC3Pay * rtpac3pay);
61 static GstFlowReturn gst_rtp_ac3_pay_handle_buffer (GstBaseRTPPayload * payload,
62     GstBuffer * buffer);
63
64 #define gst_rtp_ac3_pay_parent_class parent_class
65 G_DEFINE_TYPE (GstRtpAC3Pay, gst_rtp_ac3_pay, GST_TYPE_BASE_RTP_PAYLOAD);
66
67 static void
68 gst_rtp_ac3_pay_class_init (GstRtpAC3PayClass * klass)
69 {
70   GObjectClass *gobject_class;
71   GstElementClass *gstelement_class;
72   GstBaseRTPPayloadClass *gstbasertppayload_class;
73
74   GST_DEBUG_CATEGORY_INIT (rtpac3pay_debug, "rtpac3pay", 0,
75       "AC3 Audio RTP Depayloader");
76
77   gobject_class = (GObjectClass *) klass;
78   gstelement_class = (GstElementClass *) klass;
79   gstbasertppayload_class = (GstBaseRTPPayloadClass *) klass;
80
81   gobject_class->finalize = gst_rtp_ac3_pay_finalize;
82
83   gstelement_class->change_state = gst_rtp_ac3_pay_change_state;
84
85   gst_element_class_add_pad_template (gstelement_class,
86       gst_static_pad_template_get (&gst_rtp_ac3_pay_src_template));
87   gst_element_class_add_pad_template (gstelement_class,
88       gst_static_pad_template_get (&gst_rtp_ac3_pay_sink_template));
89
90   gst_element_class_set_details_simple (gstelement_class,
91       "RTP AC3 audio payloader", "Codec/Payloader/Network/RTP",
92       "Payload AC3 audio as RTP packets (RFC 4184)",
93       "Wim Taymans <wim.taymans@gmail.com>");
94
95   gstbasertppayload_class->set_caps = gst_rtp_ac3_pay_setcaps;
96   gstbasertppayload_class->handle_event = gst_rtp_ac3_pay_handle_event;
97   gstbasertppayload_class->handle_buffer = gst_rtp_ac3_pay_handle_buffer;
98 }
99
100 static void
101 gst_rtp_ac3_pay_init (GstRtpAC3Pay * rtpac3pay)
102 {
103   rtpac3pay->adapter = gst_adapter_new ();
104 }
105
106 static void
107 gst_rtp_ac3_pay_finalize (GObject * object)
108 {
109   GstRtpAC3Pay *rtpac3pay;
110
111   rtpac3pay = GST_RTP_AC3_PAY (object);
112
113   g_object_unref (rtpac3pay->adapter);
114
115   G_OBJECT_CLASS (parent_class)->finalize (object);
116 }
117
118 static void
119 gst_rtp_ac3_pay_reset (GstRtpAC3Pay * pay)
120 {
121   pay->first_ts = -1;
122   pay->duration = 0;
123   gst_adapter_clear (pay->adapter);
124   GST_DEBUG_OBJECT (pay, "reset depayloader");
125 }
126
127 static gboolean
128 gst_rtp_ac3_pay_setcaps (GstBaseRTPPayload * payload, GstCaps * caps)
129 {
130   gboolean res;
131   gint rate;
132   GstStructure *structure;
133
134   structure = gst_caps_get_structure (caps, 0);
135
136   if (!gst_structure_get_int (structure, "rate", &rate))
137     rate = 90000;               /* default */
138
139   gst_basertppayload_set_options (payload, "audio", TRUE, "AC3", rate);
140   res = gst_basertppayload_set_outcaps (payload, NULL);
141
142   return res;
143 }
144
145 static gboolean
146 gst_rtp_ac3_pay_handle_event (GstBaseRTPPayload * payload, GstEvent * event)
147 {
148   gboolean res;
149   GstRtpAC3Pay *rtpac3pay;
150
151   rtpac3pay = GST_RTP_AC3_PAY (payload);
152
153   switch (GST_EVENT_TYPE (event)) {
154     case GST_EVENT_EOS:
155       /* make sure we push the last packets in the adapter on EOS */
156       gst_rtp_ac3_pay_flush (rtpac3pay);
157       break;
158     case GST_EVENT_FLUSH_STOP:
159       gst_rtp_ac3_pay_reset (rtpac3pay);
160       break;
161     default:
162       break;
163   }
164
165   res =
166       GST_BASE_RTP_PAYLOAD_CLASS (parent_class)->handle_event (payload, event);
167
168   return res;
169 }
170
171 struct frmsize_s
172 {
173   guint16 bit_rate;
174   guint16 frm_size[3];
175 };
176
177 static const struct frmsize_s frmsizecod_tbl[] = {
178   {32, {64, 69, 96}},
179   {32, {64, 70, 96}},
180   {40, {80, 87, 120}},
181   {40, {80, 88, 120}},
182   {48, {96, 104, 144}},
183   {48, {96, 105, 144}},
184   {56, {112, 121, 168}},
185   {56, {112, 122, 168}},
186   {64, {128, 139, 192}},
187   {64, {128, 140, 192}},
188   {80, {160, 174, 240}},
189   {80, {160, 175, 240}},
190   {96, {192, 208, 288}},
191   {96, {192, 209, 288}},
192   {112, {224, 243, 336}},
193   {112, {224, 244, 336}},
194   {128, {256, 278, 384}},
195   {128, {256, 279, 384}},
196   {160, {320, 348, 480}},
197   {160, {320, 349, 480}},
198   {192, {384, 417, 576}},
199   {192, {384, 418, 576}},
200   {224, {448, 487, 672}},
201   {224, {448, 488, 672}},
202   {256, {512, 557, 768}},
203   {256, {512, 558, 768}},
204   {320, {640, 696, 960}},
205   {320, {640, 697, 960}},
206   {384, {768, 835, 1152}},
207   {384, {768, 836, 1152}},
208   {448, {896, 975, 1344}},
209   {448, {896, 976, 1344}},
210   {512, {1024, 1114, 1536}},
211   {512, {1024, 1115, 1536}},
212   {576, {1152, 1253, 1728}},
213   {576, {1152, 1254, 1728}},
214   {640, {1280, 1393, 1920}},
215   {640, {1280, 1394, 1920}}
216 };
217
218 static GstFlowReturn
219 gst_rtp_ac3_pay_flush (GstRtpAC3Pay * rtpac3pay)
220 {
221   guint avail, FT, NF, mtu;
222   GstBuffer *outbuf;
223   GstFlowReturn ret;
224
225   /* the data available in the adapter is either smaller
226    * than the MTU or bigger. In the case it is smaller, the complete
227    * adapter contents can be put in one packet. In the case the
228    * adapter has more than one MTU, we need to split the AC3 data
229    * over multiple packets. */
230   avail = gst_adapter_available (rtpac3pay->adapter);
231
232   ret = GST_FLOW_OK;
233
234   FT = 0;
235   /* number of frames */
236   NF = rtpac3pay->NF;
237
238   mtu = GST_BASE_RTP_PAYLOAD_MTU (rtpac3pay);
239
240   GST_LOG_OBJECT (rtpac3pay, "flushing %u bytes", avail);
241
242   while (avail > 0) {
243     guint towrite;
244     guint8 *payload;
245     guint payload_len;
246     guint packet_len;
247     GstRTPBuffer rtp = { NULL, };
248
249     /* this will be the total length of the packet */
250     packet_len = gst_rtp_buffer_calc_packet_len (2 + avail, 0, 0);
251
252     /* fill one MTU or all available bytes */
253     towrite = MIN (packet_len, mtu);
254
255     /* this is the payload length */
256     payload_len = gst_rtp_buffer_calc_payload_len (towrite, 0, 0);
257
258     /* create buffer to hold the payload */
259     outbuf = gst_rtp_buffer_new_allocate (payload_len, 0, 0);
260
261     if (FT == 0) {
262       /* check if it all fits */
263       if (towrite < packet_len) {
264         guint maxlen;
265
266         GST_LOG_OBJECT (rtpac3pay, "we need to fragment");
267         /* check if we will be able to put at least 5/8th of the total
268          * frame in this first frame. */
269         if ((avail * 5) / 8 >= (payload_len - 2))
270           FT = 1;
271         else
272           FT = 2;
273         /* check how many fragments we will need */
274         maxlen = gst_rtp_buffer_calc_payload_len (mtu - 2, 0, 0);
275         NF = (avail + maxlen - 1) / maxlen;
276       }
277     } else if (FT != 3) {
278       /* remaining fragment */
279       FT = 3;
280     }
281
282     /*
283      *  0                   1
284      *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
285      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
286      * |    MBZ    | FT|       NF      |
287      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
288      *
289      * FT: 0: one or more complete frames
290      *     1: initial 5/8 fragment
291      *     2: initial fragment not 5/8
292      *     3: other fragment
293      * NF: amount of frames if FT = 0, else number of fragments.
294      */
295     gst_rtp_buffer_map (outbuf, GST_MAP_WRITE, &rtp);
296     GST_LOG_OBJECT (rtpac3pay, "FT %u, NF %u", FT, NF);
297     payload = gst_rtp_buffer_get_payload (&rtp);
298     payload[0] = (FT & 3);
299     payload[1] = NF;
300     payload_len -= 2;
301
302     gst_adapter_copy (rtpac3pay->adapter, &payload[2], 0, payload_len);
303     gst_adapter_flush (rtpac3pay->adapter, payload_len);
304
305     avail -= payload_len;
306     if (avail == 0)
307       gst_rtp_buffer_set_marker (&rtp, TRUE);
308     gst_rtp_buffer_unmap (&rtp);
309
310     GST_BUFFER_TIMESTAMP (outbuf) = rtpac3pay->first_ts;
311     GST_BUFFER_DURATION (outbuf) = rtpac3pay->duration;
312
313     ret = gst_basertppayload_push (GST_BASE_RTP_PAYLOAD (rtpac3pay), outbuf);
314   }
315
316   return ret;
317 }
318
319 static GstFlowReturn
320 gst_rtp_ac3_pay_handle_buffer (GstBaseRTPPayload * basepayload,
321     GstBuffer * buffer)
322 {
323   GstRtpAC3Pay *rtpac3pay;
324   GstFlowReturn ret;
325   gsize size, avail, left, NF;
326   guint8 *data, *p;
327   guint packet_len;
328   GstClockTime duration, timestamp;
329
330   rtpac3pay = GST_RTP_AC3_PAY (basepayload);
331
332   data = gst_buffer_map (buffer, &size, NULL, GST_MAP_READ);
333   duration = GST_BUFFER_DURATION (buffer);
334   timestamp = GST_BUFFER_TIMESTAMP (buffer);
335
336   if (GST_BUFFER_IS_DISCONT (buffer)) {
337     GST_DEBUG_OBJECT (rtpac3pay, "DISCONT");
338     gst_rtp_ac3_pay_reset (rtpac3pay);
339   }
340
341   /* count the amount of incomming packets */
342   NF = 0;
343   left = size;
344   p = data;
345   while (TRUE) {
346     guint bsid, fscod, frmsizecod, frame_size;
347
348     if (left < 6)
349       break;
350
351     if (p[0] != 0x0b || p[1] != 0x77)
352       break;
353
354     bsid = p[5] >> 3;
355     if (bsid > 8)
356       break;
357
358     frmsizecod = p[4] & 0x3f;
359     fscod = p[4] >> 6;
360
361     GST_DEBUG_OBJECT (rtpac3pay, "fscod %u, %u", fscod, frmsizecod);
362
363     if (fscod >= 3 || frmsizecod >= 38)
364       break;
365
366     frame_size = frmsizecod_tbl[frmsizecod].frm_size[fscod] * 2;
367     if (frame_size > left)
368       break;
369
370     NF++;
371     GST_DEBUG_OBJECT (rtpac3pay, "found frame %u of size %u", NF, frame_size);
372
373     p += frame_size;
374     left -= frame_size;
375   }
376   gst_buffer_unmap (buffer, data, size);
377   if (NF == 0)
378     goto no_frames;
379
380   avail = gst_adapter_available (rtpac3pay->adapter);
381
382   /* get packet length of previous data and this new data,
383    * payload length includes a 4 byte header */
384   packet_len = gst_rtp_buffer_calc_packet_len (2 + avail + size, 0, 0);
385
386   /* if this buffer is going to overflow the packet, flush what we
387    * have. */
388   if (gst_basertppayload_is_filled (basepayload,
389           packet_len, rtpac3pay->duration + duration)) {
390     ret = gst_rtp_ac3_pay_flush (rtpac3pay);
391     avail = 0;
392   } else {
393     ret = GST_FLOW_OK;
394   }
395
396   if (avail == 0) {
397     GST_DEBUG_OBJECT (rtpac3pay,
398         "first packet, save timestamp %" GST_TIME_FORMAT,
399         GST_TIME_ARGS (timestamp));
400     rtpac3pay->first_ts = timestamp;
401     rtpac3pay->duration = 0;
402     rtpac3pay->NF = 0;
403   }
404
405   gst_adapter_push (rtpac3pay->adapter, buffer);
406   rtpac3pay->duration += duration;
407   rtpac3pay->NF += NF;
408
409   return ret;
410
411   /* ERRORS */
412 no_frames:
413   {
414     GST_WARNING_OBJECT (rtpac3pay, "no valid AC3 frames found");
415     return GST_FLOW_OK;
416   }
417 }
418
419 static GstStateChangeReturn
420 gst_rtp_ac3_pay_change_state (GstElement * element, GstStateChange transition)
421 {
422   GstRtpAC3Pay *rtpac3pay;
423   GstStateChangeReturn ret;
424
425   rtpac3pay = GST_RTP_AC3_PAY (element);
426
427   switch (transition) {
428     case GST_STATE_CHANGE_READY_TO_PAUSED:
429       gst_rtp_ac3_pay_reset (rtpac3pay);
430       break;
431     default:
432       break;
433   }
434
435   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
436
437   switch (transition) {
438     case GST_STATE_CHANGE_PAUSED_TO_READY:
439       gst_rtp_ac3_pay_reset (rtpac3pay);
440       break;
441     default:
442       break;
443   }
444   return ret;
445 }
446
447 gboolean
448 gst_rtp_ac3_pay_plugin_init (GstPlugin * plugin)
449 {
450   return gst_element_register (plugin, "rtpac3pay",
451       GST_RANK_SECONDARY, GST_TYPE_RTP_AC3_PAY);
452 }