f353800018ab44f3697dc504558450fe480f2d40
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpopuspay.c
1 /*
2  * Opus Payloader Gst Element
3  *
4  *   @author: Danilo Cesar Lemes de Paula <danilo.cesar@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., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #  include "config.h"
24 #endif
25
26 #include <string.h>
27
28 #include <gst/rtp/gstrtpbuffer.h>
29 #include <gst/audio/audio.h>
30
31 #include "gstrtpopuspay.h"
32 #include "gstrtputils.h"
33
34 GST_DEBUG_CATEGORY_STATIC (rtpopuspay_debug);
35 #define GST_CAT_DEFAULT (rtpopuspay_debug)
36
37
38 static GstStaticPadTemplate gst_rtp_opus_pay_sink_template =
39 GST_STATIC_PAD_TEMPLATE ("sink",
40     GST_PAD_SINK,
41     GST_PAD_ALWAYS,
42     GST_STATIC_CAPS
43     ("audio/x-opus, channels = (int) [1, 2], channel-mapping-family = (int) 0")
44     );
45
46 static GstStaticPadTemplate gst_rtp_opus_pay_src_template =
47 GST_STATIC_PAD_TEMPLATE ("src",
48     GST_PAD_SRC,
49     GST_PAD_ALWAYS,
50     GST_STATIC_CAPS ("application/x-rtp, "
51         "media = (string) \"audio\", "
52         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
53         "clock-rate = (int) 48000, "
54         "encoding-params = (string) \"2\", "
55         "encoding-name = (string) { \"OPUS\", \"X-GST-OPUS-DRAFT-SPITTKA-00\" }")
56     );
57
58 static gboolean gst_rtp_opus_pay_setcaps (GstRTPBasePayload * payload,
59     GstCaps * caps);
60 static GstCaps *gst_rtp_opus_pay_getcaps (GstRTPBasePayload * payload,
61     GstPad * pad, GstCaps * filter);
62 static GstFlowReturn gst_rtp_opus_pay_handle_buffer (GstRTPBasePayload *
63     payload, GstBuffer * buffer);
64
65 G_DEFINE_TYPE (GstRtpOPUSPay, gst_rtp_opus_pay, GST_TYPE_RTP_BASE_PAYLOAD);
66
67 static void
68 gst_rtp_opus_pay_class_init (GstRtpOPUSPayClass * klass)
69 {
70   GstRTPBasePayloadClass *gstbasertppayload_class;
71   GstElementClass *element_class;
72
73   gstbasertppayload_class = (GstRTPBasePayloadClass *) klass;
74   element_class = GST_ELEMENT_CLASS (klass);
75
76   gstbasertppayload_class->set_caps = gst_rtp_opus_pay_setcaps;
77   gstbasertppayload_class->get_caps = gst_rtp_opus_pay_getcaps;
78   gstbasertppayload_class->handle_buffer = gst_rtp_opus_pay_handle_buffer;
79
80   gst_element_class_add_static_pad_template (element_class,
81       &gst_rtp_opus_pay_src_template);
82   gst_element_class_add_static_pad_template (element_class,
83       &gst_rtp_opus_pay_sink_template);
84
85   gst_element_class_set_static_metadata (element_class,
86       "RTP Opus payloader",
87       "Codec/Payloader/Network/RTP",
88       "Puts Opus audio in RTP packets",
89       "Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>");
90
91   GST_DEBUG_CATEGORY_INIT (rtpopuspay_debug, "rtpopuspay", 0,
92       "Opus RTP Payloader");
93 }
94
95 static void
96 gst_rtp_opus_pay_init (GstRtpOPUSPay * rtpopuspay)
97 {
98 }
99
100 static gboolean
101 gst_rtp_opus_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps)
102 {
103   gboolean res;
104   GstCaps *src_caps;
105   GstStructure *s;
106   const char *encoding_name = "OPUS";
107   gint channels, rate;
108   const char *sprop_stereo = NULL;
109   char *sprop_maxcapturerate = NULL;
110
111   src_caps = gst_pad_get_allowed_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload));
112   if (src_caps) {
113     GstStructure *s;
114     const GValue *value;
115
116     s = gst_caps_get_structure (src_caps, 0);
117
118     if (gst_structure_has_field (s, "encoding-name")) {
119       GValue default_value = G_VALUE_INIT;
120
121       g_value_init (&default_value, G_TYPE_STRING);
122       g_value_set_static_string (&default_value, encoding_name);
123
124       value = gst_structure_get_value (s, "encoding-name");
125       if (!gst_value_can_intersect (&default_value, value))
126         encoding_name = "X-GST-OPUS-DRAFT-SPITTKA-00";
127     }
128   }
129
130   s = gst_caps_get_structure (caps, 0);
131   if (gst_structure_get_int (s, "channels", &channels)) {
132     if (channels > 2) {
133       GST_ERROR_OBJECT (payload,
134           "More than 2 channels with channel-mapping-family=0 is invalid");
135       return FALSE;
136     } else if (channels == 2) {
137       sprop_stereo = "1";
138     } else {
139       sprop_stereo = "0";
140     }
141   }
142
143   if (gst_structure_get_int (s, "rate", &rate)) {
144     sprop_maxcapturerate = g_strdup_printf ("%d", rate);
145   }
146
147   gst_rtp_base_payload_set_options (payload, "audio", FALSE,
148       encoding_name, 48000);
149
150   if (sprop_maxcapturerate && sprop_stereo) {
151     res =
152         gst_rtp_base_payload_set_outcaps (payload, "sprop-maxcapturerate",
153         G_TYPE_STRING, sprop_maxcapturerate, "sprop-stereo", G_TYPE_STRING,
154         sprop_stereo, NULL);
155   } else if (sprop_maxcapturerate) {
156     res =
157         gst_rtp_base_payload_set_outcaps (payload, "sprop-maxcapturerate",
158         G_TYPE_STRING, sprop_maxcapturerate, NULL);
159   } else if (sprop_stereo) {
160     res =
161         gst_rtp_base_payload_set_outcaps (payload, "sprop-stereo",
162         G_TYPE_STRING, sprop_stereo, NULL);
163   } else {
164     res = gst_rtp_base_payload_set_outcaps (payload, NULL);
165   }
166
167   g_free (sprop_maxcapturerate);
168
169   return res;
170 }
171
172 static GstFlowReturn
173 gst_rtp_opus_pay_handle_buffer (GstRTPBasePayload * basepayload,
174     GstBuffer * buffer)
175 {
176   GstBuffer *outbuf;
177   GstClockTime pts, dts, duration;
178
179   pts = GST_BUFFER_PTS (buffer);
180   dts = GST_BUFFER_DTS (buffer);
181   duration = GST_BUFFER_DURATION (buffer);
182
183   outbuf = gst_rtp_buffer_new_allocate (0, 0, 0);
184
185   gst_rtp_copy_audio_meta (basepayload, outbuf, buffer);
186
187   outbuf = gst_buffer_append (outbuf, buffer);
188
189   GST_BUFFER_PTS (outbuf) = pts;
190   GST_BUFFER_DTS (outbuf) = dts;
191   GST_BUFFER_DURATION (outbuf) = duration;
192
193   /* Push out */
194   return gst_rtp_base_payload_push (basepayload, outbuf);
195 }
196
197 static GstCaps *
198 gst_rtp_opus_pay_getcaps (GstRTPBasePayload * payload,
199     GstPad * pad, GstCaps * filter)
200 {
201   GstCaps *caps, *peercaps, *tcaps;
202   GstStructure *s;
203   const gchar *stereo;
204
205   if (pad == GST_RTP_BASE_PAYLOAD_SRCPAD (payload))
206     return
207         GST_RTP_BASE_PAYLOAD_CLASS (gst_rtp_opus_pay_parent_class)->get_caps
208         (payload, pad, filter);
209
210   tcaps = gst_pad_get_pad_template_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload));
211   peercaps = gst_pad_peer_query_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload),
212       tcaps);
213   gst_caps_unref (tcaps);
214   if (!peercaps)
215     return
216         GST_RTP_BASE_PAYLOAD_CLASS (gst_rtp_opus_pay_parent_class)->get_caps
217         (payload, pad, filter);
218
219   if (gst_caps_is_empty (peercaps))
220     return peercaps;
221
222   caps = gst_pad_get_pad_template_caps (GST_RTP_BASE_PAYLOAD_SINKPAD (payload));
223
224   s = gst_caps_get_structure (peercaps, 0);
225   stereo = gst_structure_get_string (s, "stereo");
226   if (stereo != NULL) {
227     caps = gst_caps_make_writable (caps);
228
229     if (!strcmp (stereo, "1")) {
230       GstCaps *caps2 = gst_caps_copy (caps);
231
232       gst_caps_set_simple (caps, "channels", G_TYPE_INT, 2, NULL);
233       gst_caps_set_simple (caps2, "channels", G_TYPE_INT, 1, NULL);
234       caps = gst_caps_merge (caps, caps2);
235     } else if (!strcmp (stereo, "0")) {
236       GstCaps *caps2 = gst_caps_copy (caps);
237
238       gst_caps_set_simple (caps, "channels", G_TYPE_INT, 1, NULL);
239       gst_caps_set_simple (caps2, "channels", G_TYPE_INT, 2, NULL);
240       caps = gst_caps_merge (caps, caps2);
241     }
242   }
243   gst_caps_unref (peercaps);
244
245   if (filter) {
246     GstCaps *tmp = gst_caps_intersect_full (caps, filter,
247         GST_CAPS_INTERSECT_FIRST);
248     gst_caps_unref (caps);
249     caps = tmp;
250   }
251
252   GST_DEBUG_OBJECT (payload, "Returning caps: %" GST_PTR_FORMAT, caps);
253   return caps;
254 }
255
256 gboolean
257 gst_rtp_opus_pay_plugin_init (GstPlugin * plugin)
258 {
259   return gst_element_register (plugin, "rtpopuspay",
260       GST_RANK_PRIMARY, GST_TYPE_RTP_OPUS_PAY);
261 }