webrtc/nice: Support domain name as connection-address of ICE candidate
[platform/upstream/gstreamer.git] / subprojects / gst-plugins-good / gst / rtp / gstrtpg729depay.c
1 /* GStreamer
2  *
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Library General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Library General Public License for more details.
12  *
13  * You should have received a copy of the GNU Library General Public
14  * License along with this library; if not, write to the
15  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
16  * Boston, MA 02110-1301, USA.
17  */
18
19 #ifdef HAVE_CONFIG_H
20 #  include "config.h"
21 #endif
22
23 #include <gst/rtp/gstrtpbuffer.h>
24 #include <gst/audio/audio.h>
25
26 #include <stdlib.h>
27 #include <string.h>
28 #include "gstrtpelements.h"
29 #include "gstrtpg729depay.h"
30 #include "gstrtputils.h"
31
32 GST_DEBUG_CATEGORY_STATIC (rtpg729depay_debug);
33 #define GST_CAT_DEFAULT (rtpg729depay_debug)
34
35
36 /* references:
37  *
38  * RFC 3551 (4.5.6)
39  */
40
41 enum
42 {
43   /* FILL ME */
44   LAST_SIGNAL
45 };
46
47 enum
48 {
49   PROP_0
50 };
51
52 /* input is an RTP packet
53  *
54  */
55 static GstStaticPadTemplate gst_rtp_g729_depay_sink_template =
56     GST_STATIC_PAD_TEMPLATE ("sink",
57     GST_PAD_SINK,
58     GST_PAD_ALWAYS,
59     GST_STATIC_CAPS ("application/x-rtp, "
60         "media = (string) \"audio\", "
61         "clock-rate = (int) 8000, "
62         "encoding-name = (string) \"G729\"; "
63         "application/x-rtp, "
64         "media = (string) \"audio\", "
65         "payload = (int) " GST_RTP_PAYLOAD_G729_STRING ", "
66         "clock-rate = (int) 8000")
67     );
68
69 static GstStaticPadTemplate gst_rtp_g729_depay_src_template =
70 GST_STATIC_PAD_TEMPLATE ("src",
71     GST_PAD_SRC,
72     GST_PAD_ALWAYS,
73     GST_STATIC_CAPS ("audio/G729, " "channels = (int) 1," "rate = (int) 8000")
74     );
75
76 static gboolean gst_rtp_g729_depay_setcaps (GstRTPBaseDepayload * depayload,
77     GstCaps * caps);
78 static GstBuffer *gst_rtp_g729_depay_process (GstRTPBaseDepayload * depayload,
79     GstRTPBuffer * rtp);
80
81 #define gst_rtp_g729_depay_parent_class parent_class
82 G_DEFINE_TYPE (GstRtpG729Depay, gst_rtp_g729_depay,
83     GST_TYPE_RTP_BASE_DEPAYLOAD);
84 GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (rtpg729depay, "rtpg729depay",
85     GST_RANK_SECONDARY, GST_TYPE_RTP_G729_DEPAY, rtp_element_init (plugin));
86
87 static void
88 gst_rtp_g729_depay_class_init (GstRtpG729DepayClass * klass)
89 {
90   GstElementClass *gstelement_class;
91   GstRTPBaseDepayloadClass *gstrtpbasedepayload_class;
92
93   GST_DEBUG_CATEGORY_INIT (rtpg729depay_debug, "rtpg729depay", 0,
94       "G.729 RTP Depayloader");
95
96   gstelement_class = (GstElementClass *) klass;
97   gstrtpbasedepayload_class = (GstRTPBaseDepayloadClass *) klass;
98
99   gst_element_class_add_static_pad_template (gstelement_class,
100       &gst_rtp_g729_depay_src_template);
101   gst_element_class_add_static_pad_template (gstelement_class,
102       &gst_rtp_g729_depay_sink_template);
103
104   gst_element_class_set_static_metadata (gstelement_class,
105       "RTP G.729 depayloader", "Codec/Depayloader/Network/RTP",
106       "Extracts G.729 audio from RTP packets (RFC 3551)",
107       "Laurent Glayal <spglegle@yahoo.fr>");
108
109   gstrtpbasedepayload_class->process_rtp_packet = gst_rtp_g729_depay_process;
110   gstrtpbasedepayload_class->set_caps = gst_rtp_g729_depay_setcaps;
111 }
112
113 static void
114 gst_rtp_g729_depay_init (GstRtpG729Depay * rtpg729depay)
115 {
116   GstRTPBaseDepayload *depayload;
117
118   depayload = GST_RTP_BASE_DEPAYLOAD (rtpg729depay);
119
120   gst_pad_use_fixed_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (depayload));
121 }
122
123 static gboolean
124 gst_rtp_g729_depay_setcaps (GstRTPBaseDepayload * depayload, GstCaps * caps)
125 {
126   GstStructure *structure;
127   GstCaps *srccaps;
128   GstRtpG729Depay *rtpg729depay;
129   const gchar *params;
130   gint clock_rate, channels;
131   gboolean ret;
132
133   rtpg729depay = GST_RTP_G729_DEPAY (depayload);
134
135   structure = gst_caps_get_structure (caps, 0);
136
137   if (!(params = gst_structure_get_string (structure, "encoding-params")))
138     channels = 1;
139   else {
140     channels = atoi (params);
141   }
142
143   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
144     clock_rate = 8000;
145
146   if (channels != 1)
147     goto wrong_channels;
148
149   if (clock_rate != 8000)
150     goto wrong_clock_rate;
151
152   depayload->clock_rate = clock_rate;
153
154   srccaps = gst_caps_new_simple ("audio/G729",
155       "channels", G_TYPE_INT, channels, "rate", G_TYPE_INT, clock_rate, NULL);
156   ret = gst_pad_set_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (depayload), srccaps);
157   gst_caps_unref (srccaps);
158
159   return ret;
160
161   /* ERRORS */
162 wrong_channels:
163   {
164     GST_DEBUG_OBJECT (rtpg729depay, "expected 1 channel, got %d", channels);
165     return FALSE;
166   }
167 wrong_clock_rate:
168   {
169     GST_DEBUG_OBJECT (rtpg729depay, "expected 8000 clock-rate, got %d",
170         clock_rate);
171     return FALSE;
172   }
173 }
174
175 static GstBuffer *
176 gst_rtp_g729_depay_process (GstRTPBaseDepayload * depayload, GstRTPBuffer * rtp)
177 {
178   GstRtpG729Depay *rtpg729depay;
179   GstBuffer *outbuf = NULL;
180   gint payload_len;
181   gboolean marker;
182
183   rtpg729depay = GST_RTP_G729_DEPAY (depayload);
184
185   payload_len = gst_rtp_buffer_get_payload_len (rtp);
186
187   /* At least 2 bytes (CNG from G729 Annex B) */
188   if (payload_len < 2) {
189     GST_ELEMENT_WARNING (rtpg729depay, STREAM, DECODE,
190         (NULL), ("G729 RTP payload too small (%d)", payload_len));
191     goto bad_packet;
192   }
193
194   GST_LOG_OBJECT (rtpg729depay, "payload len %d", payload_len);
195
196   if ((payload_len % 10) == 2) {
197     GST_LOG_OBJECT (rtpg729depay, "G729 payload contains CNG frame");
198   }
199
200   outbuf = gst_rtp_buffer_get_payload_buffer (rtp);
201   marker = gst_rtp_buffer_get_marker (rtp);
202
203   if (marker) {
204     /* marker bit starts talkspurt */
205     GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_RESYNC);
206   }
207
208   gst_rtp_drop_non_audio_meta (depayload, outbuf);
209
210   GST_LOG_OBJECT (depayload, "pushing buffer of size %" G_GSIZE_FORMAT,
211       gst_buffer_get_size (outbuf));
212
213   return outbuf;
214
215   /* ERRORS */
216 bad_packet:
217   {
218     /* no fatal error */
219     return NULL;
220   }
221 }