rtp: Update codes based on 1.18.4
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpg729pay.c
1 /* GStreamer
2  * Copyright (C) <2007> Nokia Corporation
3  * Copyright (C) <2007> Collabora Ltd
4  *  @author: Olivier Crete <olivier.crete@collabora.co.uk>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 /*
23  * This payloader assumes that the data will ALWAYS come as zero or more
24  * 10 bytes frame of audio followed by 0 or 1 2 byte frame of silence.
25  * Any other buffer format won't work
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #include <config.h>
30 #endif
31
32 #include <string.h>
33 #include <gst/rtp/gstrtpbuffer.h>
34 #include <gst/base/gstadapter.h>
35 #include <gst/audio/audio.h>
36
37 #include "gstrtpg729pay.h"
38 #include "gstrtputils.h"
39
40 GST_DEBUG_CATEGORY_STATIC (rtpg729pay_debug);
41 #define GST_CAT_DEFAULT (rtpg729pay_debug)
42
43 #define G729_FRAME_SIZE 10
44 #define G729B_CN_FRAME_SIZE 2
45 #define G729_FRAME_DURATION (10 * GST_MSECOND)
46 #define G729_FRAME_DURATION_MS (10)
47
48 static gboolean
49 gst_rtp_g729_pay_set_caps (GstRTPBasePayload * payload, GstCaps * caps);
50 static GstFlowReturn
51 gst_rtp_g729_pay_handle_buffer (GstRTPBasePayload * payload, GstBuffer * buf);
52
53 static GstStateChangeReturn
54 gst_rtp_g729_pay_change_state (GstElement * element, GstStateChange transition);
55
56 static GstStaticPadTemplate gst_rtp_g729_pay_sink_template =
57 GST_STATIC_PAD_TEMPLATE ("sink",
58     GST_PAD_SINK,
59     GST_PAD_ALWAYS,
60     GST_STATIC_CAPS ("audio/G729, "     /* according to RFC 3555 */
61         "channels = (int) 1, " "rate = (int) 8000")
62     );
63
64 static GstStaticPadTemplate gst_rtp_g729_pay_src_template =
65     GST_STATIC_PAD_TEMPLATE ("src",
66     GST_PAD_SRC,
67     GST_PAD_ALWAYS,
68     GST_STATIC_CAPS ("application/x-rtp, "
69         "media = (string) \"audio\", "
70         "payload = (int) " GST_RTP_PAYLOAD_G729_STRING ", "
71         "clock-rate = (int) 8000, "
72         "encoding-name = (string) \"G729\"; "
73         "application/x-rtp, "
74         "media = (string) \"audio\", "
75         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
76         "clock-rate = (int) 8000, " "encoding-name = (string) \"G729\"")
77     );
78
79 #define gst_rtp_g729_pay_parent_class parent_class
80 G_DEFINE_TYPE (GstRTPG729Pay, gst_rtp_g729_pay, GST_TYPE_RTP_BASE_PAYLOAD);
81
82 static void
83 gst_rtp_g729_pay_finalize (GObject * object)
84 {
85   GstRTPG729Pay *pay = GST_RTP_G729_PAY (object);
86
87   g_object_unref (pay->adapter);
88
89   G_OBJECT_CLASS (parent_class)->finalize (object);
90 }
91
92 static void
93 gst_rtp_g729_pay_class_init (GstRTPG729PayClass * klass)
94 {
95   GObjectClass *gobject_class = (GObjectClass *) klass;
96   GstElementClass *gstelement_class = (GstElementClass *) klass;
97   GstRTPBasePayloadClass *payload_class = GST_RTP_BASE_PAYLOAD_CLASS (klass);
98
99   GST_DEBUG_CATEGORY_INIT (rtpg729pay_debug, "rtpg729pay", 0,
100       "G.729 RTP Payloader");
101
102   gobject_class->finalize = gst_rtp_g729_pay_finalize;
103
104   gstelement_class->change_state = gst_rtp_g729_pay_change_state;
105
106   gst_element_class_add_static_pad_template (gstelement_class,
107       &gst_rtp_g729_pay_sink_template);
108   gst_element_class_add_static_pad_template (gstelement_class,
109       &gst_rtp_g729_pay_src_template);
110
111   gst_element_class_set_static_metadata (gstelement_class,
112       "RTP G.729 payloader", "Codec/Payloader/Network/RTP",
113       "Packetize G.729 audio into RTP packets",
114       "Olivier Crete <olivier.crete@collabora.co.uk>");
115
116   payload_class->set_caps = gst_rtp_g729_pay_set_caps;
117   payload_class->handle_buffer = gst_rtp_g729_pay_handle_buffer;
118 }
119
120 static void
121 gst_rtp_g729_pay_init (GstRTPG729Pay * pay)
122 {
123   GstRTPBasePayload *payload = GST_RTP_BASE_PAYLOAD (pay);
124
125   payload->pt = GST_RTP_PAYLOAD_G729;
126
127   pay->adapter = gst_adapter_new ();
128 }
129
130 static void
131 gst_rtp_g729_pay_reset (GstRTPG729Pay * pay)
132 {
133   gst_adapter_clear (pay->adapter);
134   pay->discont = FALSE;
135   pay->next_rtp_time = 0;
136   pay->first_ts = GST_CLOCK_TIME_NONE;
137   pay->first_rtp_time = 0;
138 }
139
140 static gboolean
141 gst_rtp_g729_pay_set_caps (GstRTPBasePayload * payload, GstCaps * caps)
142 {
143   gboolean res;
144
145   gst_rtp_base_payload_set_options (payload, "audio",
146       payload->pt != GST_RTP_PAYLOAD_G729, "G729", 8000);
147
148   res = gst_rtp_base_payload_set_outcaps (payload, NULL);
149
150   return res;
151 }
152
153 static GstFlowReturn
154 gst_rtp_g729_pay_push (GstRTPG729Pay * rtpg729pay, GstBuffer * buf)
155 {
156   GstRTPBasePayload *basepayload;
157   GstClockTime duration;
158   guint frames;
159   GstBuffer *outbuf;
160   GstFlowReturn ret;
161   GstRTPBuffer rtp = { NULL };
162   guint payload_len = gst_buffer_get_size (buf);
163
164   basepayload = GST_RTP_BASE_PAYLOAD (rtpg729pay);
165
166   GST_DEBUG_OBJECT (rtpg729pay, "Pushing %d bytes ts %" GST_TIME_FORMAT,
167       payload_len, GST_TIME_ARGS (rtpg729pay->next_ts));
168
169   /* create buffer to hold the payload */
170   outbuf =
171       gst_rtp_base_payload_allocate_output_buffer (GST_RTP_BASE_PAYLOAD
172       (rtpg729pay), 0, 0, 0);
173
174   gst_rtp_buffer_map (outbuf, GST_MAP_READWRITE, &rtp);
175
176   /* set metadata */
177   frames =
178       (payload_len / G729_FRAME_SIZE) + ((payload_len % G729_FRAME_SIZE) >> 1);
179   duration = frames * G729_FRAME_DURATION;
180   GST_BUFFER_PTS (outbuf) = rtpg729pay->next_ts;
181   GST_BUFFER_DURATION (outbuf) = duration;
182   GST_BUFFER_OFFSET (outbuf) = rtpg729pay->next_rtp_time;
183   rtpg729pay->next_ts += duration;
184   rtpg729pay->next_rtp_time += frames * 80;
185
186   if (G_UNLIKELY (rtpg729pay->discont)) {
187     GST_DEBUG_OBJECT (basepayload, "discont, setting marker bit");
188     GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
189     gst_rtp_buffer_set_marker (&rtp, TRUE);
190     rtpg729pay->discont = FALSE;
191   }
192   gst_rtp_buffer_unmap (&rtp);
193
194   /* append payload */
195   gst_rtp_copy_audio_meta (basepayload, outbuf, buf);
196   outbuf = gst_buffer_append (outbuf, buf);
197
198   ret = gst_rtp_base_payload_push (basepayload, outbuf);
199
200   return ret;
201 }
202
203 static void
204 gst_rtp_g729_pay_recalc_rtp_time (GstRTPG729Pay * rtpg729pay, GstClockTime time)
205 {
206   if (GST_CLOCK_TIME_IS_VALID (rtpg729pay->first_ts)
207       && GST_CLOCK_TIME_IS_VALID (time) && time >= rtpg729pay->first_ts) {
208     GstClockTime diff;
209     guint32 rtpdiff;
210
211     diff = time - rtpg729pay->first_ts;
212     rtpdiff = (diff / GST_MSECOND) * 8;
213     rtpg729pay->next_rtp_time = rtpg729pay->first_rtp_time + rtpdiff;
214     GST_DEBUG_OBJECT (rtpg729pay,
215         "elapsed time %" GST_TIME_FORMAT ", rtp %" G_GUINT32_FORMAT ", "
216         "new offset %" G_GUINT32_FORMAT, GST_TIME_ARGS (diff), rtpdiff,
217         rtpg729pay->next_rtp_time);
218   }
219 }
220
221 static GstFlowReturn
222 gst_rtp_g729_pay_handle_buffer (GstRTPBasePayload * payload, GstBuffer * buf)
223 {
224   GstFlowReturn ret = GST_FLOW_OK;
225   GstRTPG729Pay *rtpg729pay = GST_RTP_G729_PAY (payload);
226   GstAdapter *adapter = NULL;
227   guint payload_len;
228   guint available;
229   guint maxptime_octets = G_MAXUINT;
230   guint minptime_octets = 0;
231   guint min_payload_len;
232   guint max_payload_len;
233   gsize size;
234   GstClockTime timestamp;
235
236   size = gst_buffer_get_size (buf);
237
238   if (size % G729_FRAME_SIZE != 0 &&
239       size % G729_FRAME_SIZE != G729B_CN_FRAME_SIZE)
240     goto invalid_size;
241
242   /* max number of bytes based on given ptime, has to be multiple of
243    * frame_duration */
244   if (payload->max_ptime != -1) {
245     guint ptime_ms = payload->max_ptime / GST_MSECOND;
246
247     maxptime_octets = G729_FRAME_SIZE *
248         (int) (ptime_ms / G729_FRAME_DURATION_MS);
249
250     if (maxptime_octets < G729_FRAME_SIZE) {
251       GST_WARNING_OBJECT (payload, "Given ptime %" G_GINT64_FORMAT
252           " is smaller than minimum %d ns, overwriting to minimum",
253           payload->max_ptime, G729_FRAME_DURATION_MS);
254       maxptime_octets = G729_FRAME_SIZE;
255     }
256   }
257
258   max_payload_len = MIN (
259       /* MTU max */
260       (int) (gst_rtp_buffer_calc_payload_len (GST_RTP_BASE_PAYLOAD_MTU
261               (payload), 0, 0) / G729_FRAME_SIZE)
262       * G729_FRAME_SIZE,
263       /* ptime max */
264       maxptime_octets);
265
266   /* min number of bytes based on a given ptime, has to be a multiple
267      of frame duration */
268   {
269     guint64 min_ptime = payload->min_ptime;
270
271     min_ptime = min_ptime / GST_MSECOND;
272     minptime_octets = G729_FRAME_SIZE *
273         (int) (min_ptime / G729_FRAME_DURATION_MS);
274   }
275
276   min_payload_len = MAX (minptime_octets, G729_FRAME_SIZE);
277
278   if (min_payload_len > max_payload_len) {
279     min_payload_len = max_payload_len;
280   }
281
282   /* If the ptime is specified in the caps, tried to adhere to it exactly */
283   if (payload->ptime) {
284     guint64 ptime = payload->ptime / GST_MSECOND;
285     guint ptime_in_bytes = G729_FRAME_SIZE *
286         (guint) (ptime / G729_FRAME_DURATION_MS);
287
288     /* clip to computed min and max lengths */
289     ptime_in_bytes = MAX (min_payload_len, ptime_in_bytes);
290     ptime_in_bytes = MIN (max_payload_len, ptime_in_bytes);
291
292     min_payload_len = max_payload_len = ptime_in_bytes;
293   }
294
295   GST_LOG_OBJECT (payload,
296       "Calculated min_payload_len %u and max_payload_len %u",
297       min_payload_len, max_payload_len);
298
299   adapter = rtpg729pay->adapter;
300   available = gst_adapter_available (adapter);
301
302   timestamp = GST_BUFFER_PTS (buf);
303
304   /* resync rtp time on discont or a discontinuous cn packet */
305   if (GST_BUFFER_IS_DISCONT (buf)) {
306     /* flush remainder */
307     if (available > 0) {
308       gst_rtp_g729_pay_push (rtpg729pay,
309           gst_adapter_take_buffer_fast (adapter, available));
310       available = 0;
311     }
312     rtpg729pay->discont = TRUE;
313     gst_rtp_g729_pay_recalc_rtp_time (rtpg729pay, timestamp);
314   }
315
316   if (size < G729_FRAME_SIZE)
317     gst_rtp_g729_pay_recalc_rtp_time (rtpg729pay, timestamp);
318
319   if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (rtpg729pay->first_ts))) {
320     rtpg729pay->first_ts = timestamp;
321     rtpg729pay->first_rtp_time = rtpg729pay->next_rtp_time;
322   }
323
324   /* let's reset the base timestamp when the adapter is empty */
325   if (available == 0)
326     rtpg729pay->next_ts = timestamp;
327
328   if (available == 0 && size >= min_payload_len && size <= max_payload_len) {
329     ret = gst_rtp_g729_pay_push (rtpg729pay, buf);
330     return ret;
331   }
332
333   gst_adapter_push (adapter, buf);
334   available = gst_adapter_available (adapter);
335
336   /* as long as we have full frames */
337   /* this loop will push all available buffers till the last frame */
338   while (available >= min_payload_len ||
339       available % G729_FRAME_SIZE == G729B_CN_FRAME_SIZE) {
340     /* We send as much as we can */
341     if (available <= max_payload_len) {
342       payload_len = available;
343     } else {
344       payload_len = MIN (max_payload_len,
345           (available / G729_FRAME_SIZE) * G729_FRAME_SIZE);
346     }
347
348     ret = gst_rtp_g729_pay_push (rtpg729pay,
349         gst_adapter_take_buffer_fast (adapter, payload_len));
350     available -= payload_len;
351   }
352
353   return ret;
354
355   /* ERRORS */
356 invalid_size:
357   {
358     GST_ELEMENT_ERROR (payload, STREAM, WRONG_TYPE,
359         ("Invalid input buffer size"),
360         ("Invalid buffer size, should be a multiple of"
361             " G729_FRAME_SIZE(10) with an optional G729B_CN_FRAME_SIZE(2)"
362             " added to it, but it is %" G_GSIZE_FORMAT, size));
363     gst_buffer_unref (buf);
364     return GST_FLOW_ERROR;
365   }
366 }
367
368 static GstStateChangeReturn
369 gst_rtp_g729_pay_change_state (GstElement * element, GstStateChange transition)
370 {
371   GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
372
373   /* handle upwards state changes here */
374   switch (transition) {
375     default:
376       break;
377   }
378
379   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
380
381   /* handle downwards state changes */
382   switch (transition) {
383     case GST_STATE_CHANGE_PAUSED_TO_READY:
384       gst_rtp_g729_pay_reset (GST_RTP_G729_PAY (element));
385       break;
386     default:
387       break;
388   }
389
390   return ret;
391 }
392
393 gboolean
394 gst_rtp_g729_pay_plugin_init (GstPlugin * plugin)
395 {
396   return gst_element_register (plugin, "rtpg729pay",
397       GST_RANK_SECONDARY, GST_TYPE_RTP_G729_PAY);
398 }