2 * Copyright (C) <2007> Nokia Corporation
3 * Copyright (C) <2007> Collabora Ltd
4 * @author: Olivier Crete <olivier.crete@collabora.co.uk>
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.
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.
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.
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
33 #include <gst/rtp/gstrtpbuffer.h>
34 #include <gst/base/gstadapter.h>
36 #include "gstrtpg729pay.h"
38 /* TODO: fix gstrtpbuffer.h */
39 #undef GST_RTP_PAYLOAD_G729
40 #define GST_RTP_PAYLOAD_G729 18
41 #undef GST_RTP_PAYLOAD_G729_STRING
42 #define GST_RTP_PAYLOAD_G729_STRING "18"
44 #define G729_FRAME_SIZE 10
45 #define G729B_CN_FRAME_SIZE 2
46 #define G729_FRAME_DURATION (10 * GST_MSECOND)
47 #define G729_FRAME_DURATION_MS (10)
50 gst_rtp_g729_pay_set_caps (GstBaseRTPPayload * payload, GstCaps * caps);
52 gst_rtp_g729_pay_handle_buffer (GstBaseRTPPayload * payload, GstBuffer * buf);
55 static const GstElementDetails gst_rtp_g729_pay_details =
56 GST_ELEMENT_DETAILS ("G729 RTP packet payloader",
57 "Codec/Payloader/Network",
58 "Packetize G729 audio into RTP packets",
59 "Olivier Crete <olivier.crete@collabora.co.uk>");
61 static GstStaticPadTemplate gst_rtp_g729_pay_sink_template =
62 GST_STATIC_PAD_TEMPLATE ("sink",
65 GST_STATIC_CAPS ("audio/G729, " /* according to RFC 3555 */
66 "channels = (int) 1, " "rate = (int) 8000")
69 static GstStaticPadTemplate gst_rtp_g729_pay_src_template =
70 GST_STATIC_PAD_TEMPLATE ("src",
73 GST_STATIC_CAPS ("application/x-rtp, "
74 "media = (string) \"audio\", "
75 "payload = (int) " GST_RTP_PAYLOAD_G729_STRING ", "
76 "clock-rate = (int) 8000, "
77 "encoding-name = (string) \"G729\"; "
79 "media = (string) \"audio\", "
80 "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
81 "clock-rate = (int) 8000, " "encoding-name = (string) \"G729\"")
85 gst_rtp_g729_pay_init (GstRTPG729Pay * pay, GstRTPG729PayClass * klass);
87 GST_BOILERPLATE (GstRTPG729Pay, gst_rtp_g729_pay, GstBaseRTPAudioPayload,
88 GST_TYPE_BASE_RTP_AUDIO_PAYLOAD);
91 gst_rtp_g729_pay_base_init (gpointer klass)
93 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
95 gst_element_class_add_pad_template (element_class,
96 gst_static_pad_template_get (&gst_rtp_g729_pay_sink_template));
97 gst_element_class_add_pad_template (element_class,
98 gst_static_pad_template_get (&gst_rtp_g729_pay_src_template));
99 gst_element_class_set_details (element_class, &gst_rtp_g729_pay_details);
103 gst_rtp_g729_pay_class_init (GstRTPG729PayClass * klass)
105 GstBaseRTPPayloadClass *payload_class = GST_BASE_RTP_PAYLOAD_CLASS (klass);
107 payload_class->set_caps = gst_rtp_g729_pay_set_caps;
108 payload_class->handle_buffer = gst_rtp_g729_pay_handle_buffer;
112 gst_rtp_g729_pay_init (GstRTPG729Pay * pay, GstRTPG729PayClass * klass)
114 GstBaseRTPPayload *payload = GST_BASE_RTP_PAYLOAD (pay);
115 GstBaseRTPAudioPayload *audiopayload = GST_BASE_RTP_AUDIO_PAYLOAD (pay);
117 payload->pt = GST_RTP_PAYLOAD_G729;
118 gst_basertppayload_set_options (payload, "audio", FALSE, "G729", 8000);
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);
127 gst_rtp_g729_pay_set_caps (GstBaseRTPPayload * payload, GstCaps * caps)
130 GstStructure *structure;
133 structure = gst_caps_get_structure (caps, 0);
134 if (!gst_structure_get_int (structure, "payload", &pt))
135 pt = GST_RTP_PAYLOAD_G729;
138 payload->dynamic = pt != GST_RTP_PAYLOAD_G729;
140 res = gst_basertppayload_set_outcaps (payload, NULL);
146 gst_rtp_g729_pay_handle_buffer (GstBaseRTPPayload * payload, GstBuffer * buf)
148 GstFlowReturn ret = GST_FLOW_OK;
149 GstBaseRTPAudioPayload *basertpaudiopayload =
150 GST_BASE_RTP_AUDIO_PAYLOAD (payload);
151 GstAdapter *adapter = NULL;
153 const guint8 *data = NULL;
155 guint maxptime_octets = G_MAXUINT;
156 guint minptime_octets = 0;
157 guint min_payload_len;
158 guint max_payload_len;
159 gboolean use_adapter = FALSE;
161 available = GST_BUFFER_SIZE (buf);
163 if (available % G729_FRAME_SIZE != 0 &&
164 available % G729_FRAME_SIZE != G729B_CN_FRAME_SIZE)
167 /* max number of bytes based on given ptime, has to be multiple of
169 if (payload->max_ptime != -1) {
170 guint ptime_ms = payload->max_ptime / 1000000;
172 maxptime_octets = G729_FRAME_SIZE *
173 (int) (ptime_ms / G729_FRAME_DURATION_MS);
175 if (maxptime_octets < G729_FRAME_SIZE) {
176 GST_WARNING_OBJECT (basertpaudiopayload, "Given ptime %" G_GINT64_FORMAT
177 " is smaller than minimum %d ns, overwriting to minimum",
178 payload->max_ptime, G729_FRAME_DURATION_MS);
179 maxptime_octets = G729_FRAME_SIZE;
183 max_payload_len = MIN (
185 (int) (gst_rtp_buffer_calc_payload_len (GST_BASE_RTP_PAYLOAD_MTU
186 (basertpaudiopayload), 0, 0) / G729_FRAME_SIZE) * G729_FRAME_SIZE,
190 /* min number of bytes based on a given ptime, has to be a multiple
195 g_object_get (G_OBJECT (payload), "min-ptime", &min_ptime, NULL);
197 min_ptime = min_ptime / 1000000;
198 minptime_octets = G729_FRAME_SIZE *
199 (int) (min_ptime / G729_FRAME_DURATION_MS);
202 min_payload_len = MAX (minptime_octets, G729_FRAME_SIZE);
204 if (min_payload_len > max_payload_len) {
205 min_payload_len = max_payload_len;
208 GST_DEBUG_OBJECT (basertpaudiopayload,
209 "Calculated min_payload_len %u and max_payload_len %u",
210 min_payload_len, max_payload_len);
212 adapter = gst_base_rtp_audio_payload_get_adapter (basertpaudiopayload);
214 if (adapter && gst_adapter_available (adapter)) {
215 /* If there is always data in the adapter, we have to use it */
216 gst_adapter_push (adapter, buf);
217 available = gst_adapter_available (adapter);
220 /* let's set the base timestamp */
221 basertpaudiopayload->base_ts = GST_BUFFER_TIMESTAMP (buf);
223 /* If buffer fits on an RTP packet, let's just push it through */
224 /* this will check against max_ptime and max_mtu */
225 if (GST_BUFFER_SIZE (buf) >= min_payload_len &&
226 GST_BUFFER_SIZE (buf) <= max_payload_len) {
227 ret = gst_base_rtp_audio_payload_push (basertpaudiopayload,
228 GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf),
229 GST_BUFFER_TIMESTAMP (buf));
230 gst_buffer_unref (buf);
235 available = GST_BUFFER_SIZE (buf);
236 data = (guint8 *) GST_BUFFER_DATA (buf);
239 /* as long as we have full frames */
240 /* this loop will push all available buffers till the last frame */
241 while (available >= min_payload_len ||
242 available % G729_FRAME_SIZE == G729B_CN_FRAME_SIZE) {
245 /* We send as much as we can */
246 if (available <= max_payload_len) {
247 payload_len = available;
249 payload_len = MIN (max_payload_len,
250 (available / G729_FRAME_SIZE) * G729_FRAME_SIZE);
254 data = gst_adapter_peek (adapter, payload_len);
257 ret = gst_base_rtp_audio_payload_push (basertpaudiopayload, data,
258 payload_len, basertpaudiopayload->base_ts);
260 num = payload_len / G729_FRAME_SIZE;
261 basertpaudiopayload->base_ts += G729_FRAME_DURATION * num;
264 gst_adapter_flush (adapter, payload_len);
265 available = gst_adapter_available (adapter);
267 available -= payload_len;
273 if (available != 0 && adapter) {
275 buf2 = gst_buffer_create_sub (buf,
276 GST_BUFFER_SIZE (buf) - available, available);
277 gst_adapter_push (adapter, buf2);
279 gst_buffer_unref (buf);
284 g_object_unref (adapter);
292 GST_ELEMENT_ERROR (payload, STREAM, WRONG_TYPE,
293 ("Invalid input buffer size"),
294 ("Invalid buffer size, should be a multiple of"
295 " G729_FRAME_SIZE(10) with an optional G729B_CN_FRAME_SIZE(2)"
296 " added to it, but it is %u", available));
297 gst_buffer_unref (buf);
298 return GST_FLOW_ERROR;
303 gst_rtp_g729_pay_plugin_init (GstPlugin * plugin)
305 return gst_element_register (plugin, "rtpg729pay",
306 GST_RANK_NONE, GST_TYPE_RTP_G729_PAY);