rtpg729pay: Simplify adapter usage
[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., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, 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
36 #include "gstrtpg729pay.h"
37
38 GST_DEBUG_CATEGORY_STATIC (rtpg729pay_debug);
39 #define GST_CAT_DEFAULT (rtpg729pay_debug)
40
41 #define G729_FRAME_SIZE 10
42 #define G729B_CN_FRAME_SIZE 2
43 #define G729_FRAME_DURATION (10 * GST_MSECOND)
44 #define G729_FRAME_DURATION_MS (10)
45
46 static gboolean
47 gst_rtp_g729_pay_set_caps (GstBaseRTPPayload * payload, GstCaps * caps);
48 static GstFlowReturn
49 gst_rtp_g729_pay_handle_buffer (GstBaseRTPPayload * payload, GstBuffer * buf);
50
51
52 static const GstElementDetails gst_rtp_g729_pay_details =
53 GST_ELEMENT_DETAILS ("RTP G.729 payloader",
54     "Codec/Payloader/Network",
55     "Packetize G.729 audio into RTP packets",
56     "Olivier Crete <olivier.crete@collabora.co.uk>");
57
58 static GstStaticPadTemplate gst_rtp_g729_pay_sink_template =
59 GST_STATIC_PAD_TEMPLATE ("sink",
60     GST_PAD_SINK,
61     GST_PAD_ALWAYS,
62     GST_STATIC_CAPS ("audio/G729, "     /* according to RFC 3555 */
63         "channels = (int) 1, " "rate = (int) 8000")
64     );
65
66 static GstStaticPadTemplate gst_rtp_g729_pay_src_template =
67     GST_STATIC_PAD_TEMPLATE ("src",
68     GST_PAD_SRC,
69     GST_PAD_ALWAYS,
70     GST_STATIC_CAPS ("application/x-rtp, "
71         "media = (string) \"audio\", "
72         "payload = (int) " GST_RTP_PAYLOAD_G729_STRING ", "
73         "clock-rate = (int) 8000, "
74         "encoding-name = (string) \"G729\"; "
75         "application/x-rtp, "
76         "media = (string) \"audio\", "
77         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
78         "clock-rate = (int) 8000, " "encoding-name = (string) \"G729\"")
79     );
80
81 static void
82 gst_rtp_g729_pay_init (GstRTPG729Pay * pay, GstRTPG729PayClass * klass);
83
84 GST_BOILERPLATE (GstRTPG729Pay, gst_rtp_g729_pay, GstBaseRTPAudioPayload,
85     GST_TYPE_BASE_RTP_AUDIO_PAYLOAD);
86
87 static void
88 gst_rtp_g729_pay_base_init (gpointer klass)
89 {
90   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
91
92   gst_element_class_add_pad_template (element_class,
93       gst_static_pad_template_get (&gst_rtp_g729_pay_sink_template));
94   gst_element_class_add_pad_template (element_class,
95       gst_static_pad_template_get (&gst_rtp_g729_pay_src_template));
96   gst_element_class_set_details (element_class, &gst_rtp_g729_pay_details);
97
98   GST_DEBUG_CATEGORY_INIT (rtpg729pay_debug, "rtpg729pay", 0,
99       "G.729 RTP Payloader");
100 }
101
102 static void
103 gst_rtp_g729_pay_class_init (GstRTPG729PayClass * klass)
104 {
105   GstBaseRTPPayloadClass *payload_class = GST_BASE_RTP_PAYLOAD_CLASS (klass);
106
107   payload_class->set_caps = gst_rtp_g729_pay_set_caps;
108   payload_class->handle_buffer = gst_rtp_g729_pay_handle_buffer;
109 }
110
111 static void
112 gst_rtp_g729_pay_init (GstRTPG729Pay * pay, GstRTPG729PayClass * klass)
113 {
114   GstBaseRTPPayload *payload = GST_BASE_RTP_PAYLOAD (pay);
115   GstBaseRTPAudioPayload *audiopayload = GST_BASE_RTP_AUDIO_PAYLOAD (pay);
116
117   payload->pt = GST_RTP_PAYLOAD_G729;
118   gst_basertppayload_set_options (payload, "audio", FALSE, "G729", 8000);
119
120   gst_base_rtp_audio_payload_set_frame_based (audiopayload);
121   gst_base_rtp_audio_payload_set_frame_options (audiopayload,
122       G729_FRAME_DURATION_MS, G729_FRAME_SIZE);
123
124 }
125
126 static gboolean
127 gst_rtp_g729_pay_set_caps (GstBaseRTPPayload * payload, GstCaps * caps)
128 {
129   gboolean res;
130   GstStructure *structure;
131   gint pt;
132
133   structure = gst_caps_get_structure (caps, 0);
134   if (!gst_structure_get_int (structure, "payload", &pt))
135     pt = GST_RTP_PAYLOAD_G729;
136
137   payload->pt = pt;
138   payload->dynamic = pt != GST_RTP_PAYLOAD_G729;
139
140   res = gst_basertppayload_set_outcaps (payload, NULL);
141
142   return res;
143 }
144
145 static GstFlowReturn
146 gst_rtp_g729_pay_handle_buffer (GstBaseRTPPayload * payload, GstBuffer * buf)
147 {
148   GstFlowReturn ret = GST_FLOW_OK;
149   GstBaseRTPAudioPayload *basertpaudiopayload =
150       GST_BASE_RTP_AUDIO_PAYLOAD (payload);
151   GstAdapter *adapter = NULL;
152   guint payload_len;
153   const guint8 *data = NULL;
154   guint available;
155   guint maxptime_octets = G_MAXUINT;
156   guint minptime_octets = 0;
157   guint min_payload_len;
158   guint max_payload_len;
159
160   available = GST_BUFFER_SIZE (buf);
161
162   if (available % G729_FRAME_SIZE != 0 &&
163       available % G729_FRAME_SIZE != G729B_CN_FRAME_SIZE)
164     goto invalid_size;
165
166   /* max number of bytes based on given ptime, has to be multiple of
167    * frame_duration */
168   if (payload->max_ptime != -1) {
169     guint ptime_ms = payload->max_ptime / 1000000;
170
171     maxptime_octets = G729_FRAME_SIZE *
172         (int) (ptime_ms / G729_FRAME_DURATION_MS);
173
174     if (maxptime_octets < G729_FRAME_SIZE) {
175       GST_WARNING_OBJECT (basertpaudiopayload, "Given ptime %" G_GINT64_FORMAT
176           " is smaller than minimum %d ns, overwriting to minimum",
177           payload->max_ptime, G729_FRAME_DURATION_MS);
178       maxptime_octets = G729_FRAME_SIZE;
179     }
180   }
181
182   max_payload_len = MIN (
183       /* MTU max */
184       (int) (gst_rtp_buffer_calc_payload_len (GST_BASE_RTP_PAYLOAD_MTU
185               (basertpaudiopayload), 0, 0) / G729_FRAME_SIZE) * G729_FRAME_SIZE,
186       /* ptime max */
187       maxptime_octets);
188
189   /* min number of bytes based on a given ptime, has to be a multiple
190      of frame duration */
191   {
192     guint64 min_ptime = payload->min_ptime;
193
194     min_ptime = min_ptime / 1000000;
195     minptime_octets = G729_FRAME_SIZE *
196         (int) (min_ptime / G729_FRAME_DURATION_MS);
197   }
198
199   min_payload_len = MAX (minptime_octets, G729_FRAME_SIZE);
200
201   if (min_payload_len > max_payload_len) {
202     min_payload_len = max_payload_len;
203   }
204
205   /* If the ptime is specified in the caps, tried to adhere to it exactly */
206   if (payload->abidata.ABI.ptime) {
207     guint ptime_in_bytes = G729_FRAME_SIZE *
208         (guint) (payload->abidata.ABI.ptime / G729_FRAME_DURATION_MS);
209
210     /* clip to computed min and max lengths */
211     ptime_in_bytes = MAX (min_payload_len, ptime_in_bytes);
212     ptime_in_bytes = MIN (max_payload_len, ptime_in_bytes);
213
214     min_payload_len = max_payload_len = ptime_in_bytes;
215   }
216
217   GST_LOG_OBJECT (basertpaudiopayload,
218       "Calculated min_payload_len %u and max_payload_len %u",
219       min_payload_len, max_payload_len);
220
221   adapter = gst_base_rtp_audio_payload_get_adapter (basertpaudiopayload);
222
223
224   /* let's reset the base timestamp when the adapter is empty */
225   if (gst_adapter_available (adapter) == 0)
226     basertpaudiopayload->base_ts = GST_BUFFER_TIMESTAMP (buf);
227
228   if (gst_adapter_available (adapter) == 0 &&
229       GST_BUFFER_SIZE (buf) >= min_payload_len &&
230       GST_BUFFER_SIZE (buf) <= max_payload_len) {
231     ret = gst_base_rtp_audio_payload_push (basertpaudiopayload,
232         GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf),
233         GST_BUFFER_TIMESTAMP (buf));
234     gst_buffer_unref (buf);
235     g_object_unref (adapter);
236     return ret;
237   }
238
239   gst_adapter_push (adapter, buf);
240
241   available = gst_adapter_available (adapter);
242   /* as long as we have full frames */
243   /* this loop will push all available buffers till the last frame */
244   while (available >= min_payload_len ||
245       available % G729_FRAME_SIZE == G729B_CN_FRAME_SIZE) {
246     guint num;
247
248     /* We send as much as we can */
249     if (available <= max_payload_len) {
250       payload_len = available;
251     } else {
252       payload_len = MIN (max_payload_len,
253           (available / G729_FRAME_SIZE) * G729_FRAME_SIZE);
254     }
255
256     data = gst_adapter_peek (adapter, payload_len);
257
258     ret = gst_base_rtp_audio_payload_flush (basertpaudiopayload, payload_len,
259         basertpaudiopayload->base_ts);
260
261     num = payload_len / G729_FRAME_SIZE;
262     basertpaudiopayload->base_ts += G729_FRAME_DURATION * num;
263
264     available = gst_adapter_available (adapter);
265   }
266
267   g_object_unref (adapter);
268
269   return ret;
270
271   /* ERRORS */
272 invalid_size:
273   {
274     GST_ELEMENT_ERROR (payload, STREAM, WRONG_TYPE,
275         ("Invalid input buffer size"),
276         ("Invalid buffer size, should be a multiple of"
277             " G729_FRAME_SIZE(10) with an optional G729B_CN_FRAME_SIZE(2)"
278             " added to it, but it is %u", available));
279     gst_buffer_unref (buf);
280     return GST_FLOW_ERROR;
281   }
282 }
283
284 gboolean
285 gst_rtp_g729_pay_plugin_init (GstPlugin * plugin)
286 {
287   return gst_element_register (plugin, "rtpg729pay",
288       GST_RANK_NONE, GST_TYPE_RTP_G729_PAY);
289 }