1 /* GStreamer
2 * Copyright (C) <2005> Wim Taymans <wim.taymans@gmail.com>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 */
19
20 #ifdef HAVE_CONFIG_H
21 # include "config.h"
22 #endif
23
24 #include <gst/rtp/gstrtpbuffer.h>
25 #include <gst/video/video.h>
26
27 #include <string.h>
28 #include "gstrtpmp4vdepay.h"
29 #include "gstrtputils.h"
30
31 GST_DEBUG_CATEGORY_STATIC (rtpmp4vdepay_debug);
32 #define GST_CAT_DEFAULT (rtpmp4vdepay_debug)
33
34 static GstStaticPadTemplate gst_rtp_mp4v_depay_src_template =
35 GST_STATIC_PAD_TEMPLATE ("src",
36 GST_PAD_SRC,
37 GST_PAD_ALWAYS,
38 GST_STATIC_CAPS ("video/mpeg,"
39 "mpegversion=(int) 4," "systemstream=(boolean)false")
40 );
41
42 static GstStaticPadTemplate gst_rtp_mp4v_depay_sink_template =
43 GST_STATIC_PAD_TEMPLATE ("sink",
44 GST_PAD_SINK,
45 GST_PAD_ALWAYS,
46 GST_STATIC_CAPS ("application/x-rtp, "
47 "media = (string) \"video\", "
48 "clock-rate = (int) [1, MAX ], " "encoding-name = (string) \"MP4V-ES\""
49 /* All optional parameters
50 *
51 * "profile-level-id=[1,MAX]"
52 * "config="
53 */
54 )
55 );
56
57 #define gst_rtp_mp4v_depay_parent_class parent_class
58 G_DEFINE_TYPE (GstRtpMP4VDepay, gst_rtp_mp4v_depay,
59 GST_TYPE_RTP_BASE_DEPAYLOAD);
60
61 static void gst_rtp_mp4v_depay_finalize (GObject * object);
62
63 static gboolean gst_rtp_mp4v_depay_setcaps (GstRTPBaseDepayload * depayload,
64 GstCaps * caps);
65 static GstBuffer *gst_rtp_mp4v_depay_process (GstRTPBaseDepayload * depayload,
66 GstRTPBuffer * rtp);
67
68 static GstStateChangeReturn gst_rtp_mp4v_depay_change_state (GstElement *
69 element, GstStateChange transition);
70
71 static void
gst_rtp_mp4v_depay_class_init(GstRtpMP4VDepayClass * klass)72 gst_rtp_mp4v_depay_class_init (GstRtpMP4VDepayClass * klass)
73 {
74 GObjectClass *gobject_class;
75 GstElementClass *gstelement_class;
76 GstRTPBaseDepayloadClass *gstrtpbasedepayload_class;
77
78 gobject_class = (GObjectClass *) klass;
79 gstelement_class = (GstElementClass *) klass;
80 gstrtpbasedepayload_class = (GstRTPBaseDepayloadClass *) klass;
81
82 gobject_class->finalize = gst_rtp_mp4v_depay_finalize;
83
84 gstelement_class->change_state = gst_rtp_mp4v_depay_change_state;
85
86 gstrtpbasedepayload_class->process_rtp_packet = gst_rtp_mp4v_depay_process;
87 gstrtpbasedepayload_class->set_caps = gst_rtp_mp4v_depay_setcaps;
88
89 gst_element_class_add_static_pad_template (gstelement_class,
90 &gst_rtp_mp4v_depay_src_template);
91 gst_element_class_add_static_pad_template (gstelement_class,
92 &gst_rtp_mp4v_depay_sink_template);
93
94 gst_element_class_set_static_metadata (gstelement_class,
95 "RTP MPEG4 video depayloader", "Codec/Depayloader/Network/RTP",
96 "Extracts MPEG4 video from RTP packets (RFC 3016)",
97 "Wim Taymans <wim.taymans@gmail.com>");
98
99 GST_DEBUG_CATEGORY_INIT (rtpmp4vdepay_debug, "rtpmp4vdepay", 0,
100 "MPEG4 video RTP Depayloader");
101 }
102
103 static void
gst_rtp_mp4v_depay_init(GstRtpMP4VDepay * rtpmp4vdepay)104 gst_rtp_mp4v_depay_init (GstRtpMP4VDepay * rtpmp4vdepay)
105 {
106 rtpmp4vdepay->adapter = gst_adapter_new ();
107 }
108
109 static void
gst_rtp_mp4v_depay_finalize(GObject * object)110 gst_rtp_mp4v_depay_finalize (GObject * object)
111 {
112 GstRtpMP4VDepay *rtpmp4vdepay;
113
114 rtpmp4vdepay = GST_RTP_MP4V_DEPAY (object);
115
116 g_object_unref (rtpmp4vdepay->adapter);
117 rtpmp4vdepay->adapter = NULL;
118
119 G_OBJECT_CLASS (parent_class)->finalize (object);
120 }
121
122 static gboolean
gst_rtp_mp4v_depay_setcaps(GstRTPBaseDepayload * depayload,GstCaps * caps)123 gst_rtp_mp4v_depay_setcaps (GstRTPBaseDepayload * depayload, GstCaps * caps)
124 {
125 GstStructure *structure;
126 GstCaps *srccaps;
127 const gchar *str;
128 gint clock_rate;
129 gboolean res;
130
131 structure = gst_caps_get_structure (caps, 0);
132
133 if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
134 clock_rate = 90000; /* default */
135 depayload->clock_rate = clock_rate;
136
137 srccaps = gst_caps_new_simple ("video/mpeg",
138 "mpegversion", G_TYPE_INT, 4,
139 "systemstream", G_TYPE_BOOLEAN, FALSE, NULL);
140
141 if ((str = gst_structure_get_string (structure, "config"))) {
142 GValue v = { 0 };
143
144 g_value_init (&v, GST_TYPE_BUFFER);
145 if (gst_value_deserialize (&v, str)) {
146 GstBuffer *buffer;
147
148 buffer = gst_value_get_buffer (&v);
149 gst_caps_set_simple (srccaps,
150 "codec_data", GST_TYPE_BUFFER, buffer, NULL);
151 /* caps takes ref */
152 g_value_unset (&v);
153 } else {
154 g_warning ("cannot convert config to buffer");
155 }
156 }
157 res = gst_pad_set_caps (depayload->srcpad, srccaps);
158 gst_caps_unref (srccaps);
159
160 return res;
161 }
162
163 static GstBuffer *
gst_rtp_mp4v_depay_process(GstRTPBaseDepayload * depayload,GstRTPBuffer * rtp)164 gst_rtp_mp4v_depay_process (GstRTPBaseDepayload * depayload, GstRTPBuffer * rtp)
165 {
166 GstRtpMP4VDepay *rtpmp4vdepay;
167 GstBuffer *pbuf, *outbuf = NULL;
168 gboolean marker;
169
170 rtpmp4vdepay = GST_RTP_MP4V_DEPAY (depayload);
171
172 /* flush remaining data on discont */
173 if (GST_BUFFER_IS_DISCONT (rtp->buffer))
174 gst_adapter_clear (rtpmp4vdepay->adapter);
175
176 pbuf = gst_rtp_buffer_get_payload_buffer (rtp);
177 marker = gst_rtp_buffer_get_marker (rtp);
178
179 gst_adapter_push (rtpmp4vdepay->adapter, pbuf);
180
181 /* if this was the last packet of the VOP, create and push a buffer */
182 if (marker) {
183 guint avail;
184
185 avail = gst_adapter_available (rtpmp4vdepay->adapter);
186 outbuf = gst_adapter_take_buffer (rtpmp4vdepay->adapter, avail);
187
188 GST_DEBUG ("gst_rtp_mp4v_depay_chain: pushing buffer of size %"
189 G_GSIZE_FORMAT, gst_buffer_get_size (outbuf));
190 gst_rtp_drop_non_video_meta (rtpmp4vdepay, outbuf);
191 }
192
193 return outbuf;
194 }
195
196 static GstStateChangeReturn
gst_rtp_mp4v_depay_change_state(GstElement * element,GstStateChange transition)197 gst_rtp_mp4v_depay_change_state (GstElement * element,
198 GstStateChange transition)
199 {
200 GstRtpMP4VDepay *rtpmp4vdepay;
201 GstStateChangeReturn ret;
202
203 rtpmp4vdepay = GST_RTP_MP4V_DEPAY (element);
204
205 switch (transition) {
206 case GST_STATE_CHANGE_READY_TO_PAUSED:
207 gst_adapter_clear (rtpmp4vdepay->adapter);
208 break;
209 default:
210 break;
211 }
212
213 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
214
215 switch (transition) {
216 default:
217 break;
218 }
219 return ret;
220 }
221
222 gboolean
gst_rtp_mp4v_depay_plugin_init(GstPlugin * plugin)223 gst_rtp_mp4v_depay_plugin_init (GstPlugin * plugin)
224 {
225 return gst_element_register (plugin, "rtpmp4vdepay",
226 GST_RANK_SECONDARY, GST_TYPE_RTP_MP4V_DEPAY);
227 }
228