gst/rtp/: Fix element descriptions.
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpmp4vdepay.c
1 /* GStreamer
2  * Copyright (C) <2005> Wim Taymans <wim@fluendo.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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <gst/rtp/gstrtpbuffer.h>
25
26 #include <string.h>
27 #include "gstrtpmp4vdepay.h"
28
29 /* elementfactory information */
30 static const GstElementDetails gst_rtp_mp4vdepay_details =
31 GST_ELEMENT_DETAILS ("RTP packet depayloader",
32     "Codec/Depayloader/Network",
33     "Extracts MPEG4 video from RTP packets (RFC 3016)",
34     "Wim Taymans <wim@fluendo.com>");
35
36 /* RtpMP4VDepay signals and args */
37 enum
38 {
39   /* FILL ME */
40   LAST_SIGNAL
41 };
42
43 enum
44 {
45   ARG_0,
46   ARG_FREQUENCY
47 };
48
49 static GstStaticPadTemplate gst_rtp_mp4v_depay_src_template =
50 GST_STATIC_PAD_TEMPLATE ("src",
51     GST_PAD_SRC,
52     GST_PAD_ALWAYS,
53     GST_STATIC_CAPS ("video/mpeg,"
54         "mpegversion=(int) 4," "systemstream=(boolean)false")
55     );
56
57 static GstStaticPadTemplate gst_rtp_mp4v_depay_sink_template =
58 GST_STATIC_PAD_TEMPLATE ("sink",
59     GST_PAD_SINK,
60     GST_PAD_ALWAYS,
61     GST_STATIC_CAPS ("application/x-rtp, "
62         "media = (string) \"video\", "
63         "clock-rate = (int) [1, MAX ], " "encoding-name = (string) \"MP4V-ES\""
64         /* All optional parameters
65          *
66          * "profile-level-id=[1,MAX]"
67          * "config=" 
68          */
69     )
70     );
71
72 GST_BOILERPLATE (GstRtpMP4VDepay, gst_rtp_mp4v_depay, GstBaseRTPDepayload,
73     GST_TYPE_BASE_RTP_DEPAYLOAD);
74
75 static gboolean gst_rtp_mp4v_depay_setcaps (GstBaseRTPDepayload * depayload,
76     GstCaps * caps);
77 static GstBuffer *gst_rtp_mp4v_depay_process (GstBaseRTPDepayload * depayload,
78     GstBuffer * buf);
79
80 static void gst_rtp_mp4v_depay_set_property (GObject * object, guint prop_id,
81     const GValue * value, GParamSpec * pspec);
82 static void gst_rtp_mp4v_depay_get_property (GObject * object, guint prop_id,
83     GValue * value, GParamSpec * pspec);
84
85 static GstStateChangeReturn gst_rtp_mp4v_depay_change_state (GstElement *
86     element, GstStateChange transition);
87
88
89 static void
90 gst_rtp_mp4v_depay_base_init (gpointer klass)
91 {
92   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
93
94   gst_element_class_add_pad_template (element_class,
95       gst_static_pad_template_get (&gst_rtp_mp4v_depay_src_template));
96   gst_element_class_add_pad_template (element_class,
97       gst_static_pad_template_get (&gst_rtp_mp4v_depay_sink_template));
98
99   gst_element_class_set_details (element_class, &gst_rtp_mp4vdepay_details);
100 }
101
102 static void
103 gst_rtp_mp4v_depay_class_init (GstRtpMP4VDepayClass * klass)
104 {
105   GObjectClass *gobject_class;
106   GstElementClass *gstelement_class;
107   GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
108
109   gobject_class = (GObjectClass *) klass;
110   gstelement_class = (GstElementClass *) klass;
111
112   gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
113
114   gstbasertpdepayload_class->process = gst_rtp_mp4v_depay_process;
115   gstbasertpdepayload_class->set_caps = gst_rtp_mp4v_depay_setcaps;
116
117   gobject_class->set_property = gst_rtp_mp4v_depay_set_property;
118   gobject_class->get_property = gst_rtp_mp4v_depay_get_property;
119
120   gstelement_class->change_state = gst_rtp_mp4v_depay_change_state;
121 }
122
123 static void
124 gst_rtp_mp4v_depay_init (GstRtpMP4VDepay * rtpmp4vdepay,
125     GstRtpMP4VDepayClass * klass)
126 {
127 }
128
129 static gboolean
130 gst_rtp_mp4v_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
131 {
132
133   GstStructure *structure;
134   GstRtpMP4VDepay *rtpmp4vdepay;
135   GstCaps *srccaps;
136   const gchar *str;
137   gint clock_rate = 90000;      /* default */
138
139   rtpmp4vdepay = GST_RTP_MP4V_DEPAY (depayload);
140
141   structure = gst_caps_get_structure (caps, 0);
142
143   if (gst_structure_has_field (structure, "clock-rate")) {
144     gst_structure_get_int (structure, "clock-rate", &clock_rate);
145   }
146
147   depayload->clock_rate = clock_rate;
148
149   srccaps = gst_caps_new_simple ("video/mpeg",
150       "mpegversion", G_TYPE_INT, 4,
151       "systemstream", G_TYPE_BOOLEAN, FALSE, NULL);
152
153   if ((str = gst_structure_get_string (structure, "config"))) {
154     GValue v = { 0 };
155
156     g_value_init (&v, GST_TYPE_BUFFER);
157     if (gst_value_deserialize (&v, str)) {
158       GstBuffer *buffer;
159
160       buffer = gst_value_get_buffer (&v);
161       gst_buffer_ref (buffer);
162       g_value_unset (&v);
163
164       gst_buffer_set_caps (buffer, srccaps);
165
166       gst_caps_unref (srccaps);
167
168       gst_pad_push (depayload->srcpad, buffer);
169     } else {
170       g_warning ("cannot convert config to buffer");
171     }
172   }
173
174   return TRUE;
175 }
176
177 static GstBuffer *
178 gst_rtp_mp4v_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
179 {
180   GstRtpMP4VDepay *rtpmp4vdepay;
181   GstBuffer *outbuf;
182
183   rtpmp4vdepay = GST_RTP_MP4V_DEPAY (depayload);
184
185   if (!gst_rtp_buffer_validate (buf))
186     goto bad_packet;
187
188   {
189     gint payload_len;
190     guint8 *payload;
191     guint32 timestamp;
192
193     payload_len = gst_rtp_buffer_get_payload_len (buf);
194     payload = gst_rtp_buffer_get_payload (buf);
195
196     timestamp = gst_rtp_buffer_get_timestamp (buf);
197
198     outbuf = gst_buffer_new_and_alloc (payload_len);
199     memcpy (GST_BUFFER_DATA (outbuf), payload, payload_len);
200
201     gst_adapter_push (rtpmp4vdepay->adapter, outbuf);
202
203     /* if this was the last packet of the VOP, create and push a buffer */
204     if (gst_rtp_buffer_get_marker (buf)) {
205       guint avail;
206
207       avail = gst_adapter_available (rtpmp4vdepay->adapter);
208
209       outbuf = gst_buffer_new ();
210       GST_BUFFER_SIZE (outbuf) = avail;
211       GST_BUFFER_MALLOCDATA (outbuf) =
212           gst_adapter_take (rtpmp4vdepay->adapter, avail);
213       GST_BUFFER_DATA (outbuf) = GST_BUFFER_MALLOCDATA (outbuf);
214       gst_buffer_set_caps (outbuf, GST_PAD_CAPS (depayload->srcpad));
215       GST_BUFFER_TIMESTAMP (outbuf) =
216           timestamp * GST_SECOND / depayload->clock_rate;
217
218       GST_DEBUG ("gst_rtp_mp4v_depay_chain: pushing buffer of size %d",
219           GST_BUFFER_SIZE (outbuf));
220
221       return outbuf;
222     } else {
223       return NULL;
224     }
225   }
226
227   return NULL;
228
229 bad_packet:
230   {
231     GST_ELEMENT_WARNING (rtpmp4vdepay, STREAM, DECODE,
232         ("Packet did not validate"), (NULL));
233
234     return NULL;
235   }
236 }
237
238 static void
239 gst_rtp_mp4v_depay_set_property (GObject * object, guint prop_id,
240     const GValue * value, GParamSpec * pspec)
241 {
242   GstRtpMP4VDepay *rtpmp4vdepay;
243
244   rtpmp4vdepay = GST_RTP_MP4V_DEPAY (object);
245
246   switch (prop_id) {
247     default:
248       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
249       break;
250   }
251 }
252
253 static void
254 gst_rtp_mp4v_depay_get_property (GObject * object, guint prop_id,
255     GValue * value, GParamSpec * pspec)
256 {
257   GstRtpMP4VDepay *rtpmp4vdepay;
258
259   rtpmp4vdepay = GST_RTP_MP4V_DEPAY (object);
260
261   switch (prop_id) {
262     default:
263       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
264       break;
265   }
266 }
267
268 static GstStateChangeReturn
269 gst_rtp_mp4v_depay_change_state (GstElement * element,
270     GstStateChange transition)
271 {
272   GstRtpMP4VDepay *rtpmp4vdepay;
273   GstStateChangeReturn ret;
274
275   rtpmp4vdepay = GST_RTP_MP4V_DEPAY (element);
276
277   switch (transition) {
278     case GST_STATE_CHANGE_NULL_TO_READY:
279       rtpmp4vdepay->adapter = gst_adapter_new ();
280       break;
281     case GST_STATE_CHANGE_READY_TO_PAUSED:
282       gst_adapter_clear (rtpmp4vdepay->adapter);
283       break;
284     default:
285       break;
286   }
287
288   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
289
290   switch (transition) {
291     case GST_STATE_CHANGE_READY_TO_NULL:
292       g_object_unref (rtpmp4vdepay->adapter);
293       rtpmp4vdepay->adapter = NULL;
294       break;
295     default:
296       break;
297   }
298   return ret;
299 }
300
301 gboolean
302 gst_rtp_mp4v_depay_plugin_init (GstPlugin * plugin)
303 {
304   return gst_element_register (plugin, "rtpmp4vdepay",
305       GST_RANK_MARGINAL, GST_TYPE_RTP_MP4V_DEPAY);
306 }