57dae0c84bbcb670bc4e7c4332f4d807a54e3309
[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   guint available;
154   guint maxptime_octets = G_MAXUINT;
155   guint minptime_octets = 0;
156   guint min_payload_len;
157   guint max_payload_len;
158
159   available = GST_BUFFER_SIZE (buf);
160
161   if (available % G729_FRAME_SIZE != 0 &&
162       available % G729_FRAME_SIZE != G729B_CN_FRAME_SIZE)
163     goto invalid_size;
164
165   /* max number of bytes based on given ptime, has to be multiple of
166    * frame_duration */
167   if (payload->max_ptime != -1) {
168     guint ptime_ms = payload->max_ptime / 1000000;
169
170     maxptime_octets = G729_FRAME_SIZE *
171         (int) (ptime_ms / G729_FRAME_DURATION_MS);
172
173     if (maxptime_octets < G729_FRAME_SIZE) {
174       GST_WARNING_OBJECT (basertpaudiopayload, "Given ptime %" G_GINT64_FORMAT
175           " is smaller than minimum %d ns, overwriting to minimum",
176           payload->max_ptime, G729_FRAME_DURATION_MS);
177       maxptime_octets = G729_FRAME_SIZE;
178     }
179   }
180
181   max_payload_len = MIN (
182       /* MTU max */
183       (int) (gst_rtp_buffer_calc_payload_len (GST_BASE_RTP_PAYLOAD_MTU
184               (basertpaudiopayload), 0, 0) / G729_FRAME_SIZE) * G729_FRAME_SIZE,
185       /* ptime max */
186       maxptime_octets);
187
188   /* min number of bytes based on a given ptime, has to be a multiple
189      of frame duration */
190   {
191     guint64 min_ptime = payload->min_ptime;
192
193     min_ptime = min_ptime / 1000000;
194     minptime_octets = G729_FRAME_SIZE *
195         (int) (min_ptime / G729_FRAME_DURATION_MS);
196   }
197
198   min_payload_len = MAX (minptime_octets, G729_FRAME_SIZE);
199
200   if (min_payload_len > max_payload_len) {
201     min_payload_len = max_payload_len;
202   }
203
204   /* If the ptime is specified in the caps, tried to adhere to it exactly */
205   if (payload->abidata.ABI.ptime) {
206     guint ptime_in_bytes = G729_FRAME_SIZE *
207         (guint) (payload->abidata.ABI.ptime / G729_FRAME_DURATION_MS);
208
209     /* clip to computed min and max lengths */
210     ptime_in_bytes = MAX (min_payload_len, ptime_in_bytes);
211     ptime_in_bytes = MIN (max_payload_len, ptime_in_bytes);
212
213     min_payload_len = max_payload_len = ptime_in_bytes;
214   }
215
216   GST_LOG_OBJECT (basertpaudiopayload,
217       "Calculated min_payload_len %u and max_payload_len %u",
218       min_payload_len, max_payload_len);
219
220   adapter = gst_base_rtp_audio_payload_get_adapter (basertpaudiopayload);
221
222
223   /* let's reset the base timestamp when the adapter is empty */
224   if (gst_adapter_available (adapter) == 0)
225     basertpaudiopayload->base_ts = GST_BUFFER_TIMESTAMP (buf);
226
227   if (gst_adapter_available (adapter) == 0 &&
228       GST_BUFFER_SIZE (buf) >= min_payload_len &&
229       GST_BUFFER_SIZE (buf) <= max_payload_len) {
230     ret = gst_base_rtp_audio_payload_push (basertpaudiopayload,
231         GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf),
232         GST_BUFFER_TIMESTAMP (buf));
233     gst_buffer_unref (buf);
234     g_object_unref (adapter);
235     return ret;
236   }
237
238   gst_adapter_push (adapter, buf);
239
240   available = gst_adapter_available (adapter);
241   /* as long as we have full frames */
242   /* this loop will push all available buffers till the last frame */
243   while (available >= min_payload_len ||
244       available % G729_FRAME_SIZE == G729B_CN_FRAME_SIZE) {
245     guint num;
246
247     /* We send as much as we can */
248     if (available <= max_payload_len) {
249       payload_len = available;
250     } else {
251       payload_len = MIN (max_payload_len,
252           (available / G729_FRAME_SIZE) * G729_FRAME_SIZE);
253     }
254
255     ret = gst_base_rtp_audio_payload_flush (basertpaudiopayload, payload_len,
256         basertpaudiopayload->base_ts);
257
258     num = payload_len / G729_FRAME_SIZE;
259     basertpaudiopayload->base_ts += G729_FRAME_DURATION * num;
260
261     available = gst_adapter_available (adapter);
262   }
263
264   g_object_unref (adapter);
265
266   return ret;
267
268   /* ERRORS */
269 invalid_size:
270   {
271     GST_ELEMENT_ERROR (payload, STREAM, WRONG_TYPE,
272         ("Invalid input buffer size"),
273         ("Invalid buffer size, should be a multiple of"
274             " G729_FRAME_SIZE(10) with an optional G729B_CN_FRAME_SIZE(2)"
275             " added to it, but it is %u", available));
276     gst_buffer_unref (buf);
277     return GST_FLOW_ERROR;
278   }
279 }
280
281 gboolean
282 gst_rtp_g729_pay_plugin_init (GstPlugin * plugin)
283 {
284   return gst_element_register (plugin, "rtpg729pay",
285       GST_RANK_NONE, GST_TYPE_RTP_G729_PAY);
286 }