rtpg729pay/depay: Demote per-buffer debug messages to log level
[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   gboolean use_adapter = FALSE;
160
161   available = GST_BUFFER_SIZE (buf);
162
163   if (available % G729_FRAME_SIZE != 0 &&
164       available % G729_FRAME_SIZE != G729B_CN_FRAME_SIZE)
165     goto invalid_size;
166
167   /* max number of bytes based on given ptime, has to be multiple of
168    * frame_duration */
169   if (payload->max_ptime != -1) {
170     guint ptime_ms = payload->max_ptime / 1000000;
171
172     maxptime_octets = G729_FRAME_SIZE *
173         (int) (ptime_ms / G729_FRAME_DURATION_MS);
174
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;
180     }
181   }
182
183   max_payload_len = MIN (
184       /* MTU max */
185       (int) (gst_rtp_buffer_calc_payload_len (GST_BASE_RTP_PAYLOAD_MTU
186               (basertpaudiopayload), 0, 0) / G729_FRAME_SIZE) * G729_FRAME_SIZE,
187       /* ptime max */
188       maxptime_octets);
189
190   /* min number of bytes based on a given ptime, has to be a multiple
191      of frame duration */
192   {
193     guint64 min_ptime;
194
195     g_object_get (G_OBJECT (payload), "min-ptime", &min_ptime, NULL);
196
197     min_ptime = min_ptime / 1000000;
198     minptime_octets = G729_FRAME_SIZE *
199         (int) (min_ptime / G729_FRAME_DURATION_MS);
200   }
201
202   min_payload_len = MAX (minptime_octets, G729_FRAME_SIZE);
203
204   if (min_payload_len > max_payload_len) {
205     min_payload_len = max_payload_len;
206   }
207
208   GST_LOG_OBJECT (basertpaudiopayload,
209       "Calculated min_payload_len %u and max_payload_len %u",
210       min_payload_len, max_payload_len);
211
212   adapter = gst_base_rtp_audio_payload_get_adapter (basertpaudiopayload);
213
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);
218     use_adapter = TRUE;
219   } else {
220     /* let's set the base timestamp */
221     basertpaudiopayload->base_ts = GST_BUFFER_TIMESTAMP (buf);
222
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);
231       g_object_unref (adapter);
232       return ret;
233     }
234
235     available = GST_BUFFER_SIZE (buf);
236     data = (guint8 *) GST_BUFFER_DATA (buf);
237   }
238
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) {
243     guint num;
244
245     /* We send as much as we can */
246     if (available <= max_payload_len) {
247       payload_len = available;
248     } else {
249       payload_len = MIN (max_payload_len,
250           (available / G729_FRAME_SIZE) * G729_FRAME_SIZE);
251     }
252
253     if (use_adapter) {
254       data = gst_adapter_peek (adapter, payload_len);
255     }
256
257     ret = gst_base_rtp_audio_payload_push (basertpaudiopayload, data,
258         payload_len, basertpaudiopayload->base_ts);
259
260     num = payload_len / G729_FRAME_SIZE;
261     basertpaudiopayload->base_ts += G729_FRAME_DURATION * num;
262
263     if (use_adapter) {
264       gst_adapter_flush (adapter, payload_len);
265       available = gst_adapter_available (adapter);
266     } else {
267       available -= payload_len;
268       data += payload_len;
269     }
270   }
271
272   if (!use_adapter) {
273     if (available != 0 && adapter) {
274       GstBuffer *buf2;
275       buf2 = gst_buffer_create_sub (buf,
276           GST_BUFFER_SIZE (buf) - available, available);
277       gst_adapter_push (adapter, buf2);
278     }
279     gst_buffer_unref (buf);
280   }
281
282   if (adapter) {
283     g_object_unref (adapter);
284   }
285
286   return ret;
287
288   /* ERRORS */
289 invalid_size:
290   {
291     GST_ELEMENT_ERROR (payload, STREAM, WRONG_TYPE,
292         ("Invalid input buffer size"),
293         ("Invalid buffer size, should be a multiple of"
294             " G729_FRAME_SIZE(10) with an optional G729B_CN_FRAME_SIZE(2)"
295             " added to it, but it is %u", available));
296     gst_buffer_unref (buf);
297     return GST_FLOW_ERROR;
298   }
299 }
300
301 gboolean
302 gst_rtp_g729_pay_plugin_init (GstPlugin * plugin)
303 {
304   return gst_element_register (plugin, "rtpg729pay",
305       GST_RANK_NONE, GST_TYPE_RTP_G729_PAY);
306 }