gst/rtp/: Make sure we configure the clock_rate in the baseclass in the setcaps funct...
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpmp2tdepay.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 "gstrtpmp2tdepay.h"
28
29 /* elementfactory information */
30 static const GstElementDetails gst_rtp_mp2tdepay_details =
31 GST_ELEMENT_DETAILS ("RTP packet depayloader",
32     "Codec/Depayloader/Network",
33     "Extracts MPEG2 TS from RTP packets (RFC 2250)",
34     "Wim Taymans <wim@fluendo.com>\n"
35     "Thijs Vermeir <thijs.vermeir@barco.com>");
36
37 /* RtpMP2TDepay signals and args */
38 enum
39 {
40   /* FILL ME */
41   LAST_SIGNAL
42 };
43
44 #define DEFAULT_SKIP_FIRST_BYTES        0
45
46 enum
47 {
48   PROP_0,
49   PROP_SKIP_FIRST_BYTES
50 };
51
52 static GstStaticPadTemplate gst_rtp_mp2t_depay_src_template =
53 GST_STATIC_PAD_TEMPLATE ("src",
54     GST_PAD_SRC,
55     GST_PAD_ALWAYS,
56     GST_STATIC_CAPS ("video/mpegts,"
57         "packetsize=(int)188," "systemstream=(boolean)true")
58     );
59
60 static GstStaticPadTemplate gst_rtp_mp2t_depay_sink_template =
61     GST_STATIC_PAD_TEMPLATE ("sink",
62     GST_PAD_SINK,
63     GST_PAD_ALWAYS,
64     GST_STATIC_CAPS ("application/x-rtp, "
65         "media = (string) \"video\", "
66         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
67         "clock-rate = (int) [1, MAX ], " "encoding-name = (string) \"MP2T-ES\";"
68         /* All optional parameters
69          *
70          * "profile-level-id=[1,MAX]"
71          * "config=" 
72          */
73         "application/x-rtp, "
74         "media = (string) \"video\", "
75         "payload = (int) " GST_RTP_PAYLOAD_MP2T_STRING ", "
76         "clock-rate = (int) [1, MAX ]")
77     );
78
79 GST_BOILERPLATE (GstRtpMP2TDepay, gst_rtp_mp2t_depay, GstBaseRTPDepayload,
80     GST_TYPE_BASE_RTP_DEPAYLOAD);
81
82 static gboolean gst_rtp_mp2t_depay_setcaps (GstBaseRTPDepayload * depayload,
83     GstCaps * caps);
84 static GstBuffer *gst_rtp_mp2t_depay_process (GstBaseRTPDepayload * depayload,
85     GstBuffer * buf);
86
87 static void gst_rtp_mp2t_depay_set_property (GObject * object, guint prop_id,
88     const GValue * value, GParamSpec * pspec);
89 static void gst_rtp_mp2t_depay_get_property (GObject * object, guint prop_id,
90     GValue * value, GParamSpec * pspec);
91
92 static GstStateChangeReturn gst_rtp_mp2t_depay_change_state (GstElement *
93     element, GstStateChange transition);
94
95
96 static void
97 gst_rtp_mp2t_depay_base_init (gpointer klass)
98 {
99   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
100
101   gst_element_class_add_pad_template (element_class,
102       gst_static_pad_template_get (&gst_rtp_mp2t_depay_src_template));
103   gst_element_class_add_pad_template (element_class,
104       gst_static_pad_template_get (&gst_rtp_mp2t_depay_sink_template));
105
106   gst_element_class_set_details (element_class, &gst_rtp_mp2tdepay_details);
107 }
108
109 static void
110 gst_rtp_mp2t_depay_class_init (GstRtpMP2TDepayClass * klass)
111 {
112   GObjectClass *gobject_class;
113   GstElementClass *gstelement_class;
114   GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
115
116   gobject_class = (GObjectClass *) klass;
117   gstelement_class = (GstElementClass *) klass;
118
119   gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
120
121   parent_class = g_type_class_peek_parent (klass);
122
123   gstbasertpdepayload_class->process = gst_rtp_mp2t_depay_process;
124   gstbasertpdepayload_class->set_caps = gst_rtp_mp2t_depay_setcaps;
125
126   gobject_class->set_property = gst_rtp_mp2t_depay_set_property;
127   gobject_class->get_property = gst_rtp_mp2t_depay_get_property;
128
129   g_object_class_install_property (gobject_class, PROP_SKIP_FIRST_BYTES,
130       g_param_spec_uint ("skip-first-bytes",
131           "Skip first bytes",
132           "The amount of bytes that need to be skipped at the beginning of the payload",
133           0, G_MAXUINT, 0, G_PARAM_READWRITE));
134
135   gstelement_class->change_state = gst_rtp_mp2t_depay_change_state;
136 }
137
138 static void
139 gst_rtp_mp2t_depay_init (GstRtpMP2TDepay * depayload,
140     GstRtpMP2TDepayClass * klass)
141 {
142   GstRtpMP2TDepay *rtpmp2tdepay;
143
144   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (depayload);
145
146   rtpmp2tdepay->skip_first_bytes = DEFAULT_SKIP_FIRST_BYTES;
147 }
148
149 static gboolean
150 gst_rtp_mp2t_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
151 {
152   GstCaps *srccaps;
153   GstStructure *structure;
154   GstRtpMP2TDepay *rtpmp2tdepay;
155   gint clock_rate = 90000;      /* default */
156
157   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (depayload);
158
159   structure = gst_caps_get_structure (caps, 0);
160   gst_structure_get_int (structure, "clock-rate", &clock_rate);
161   depayload->clock_rate = clock_rate;
162
163   srccaps = gst_caps_new_simple ("video/mpegts",
164       "packetsize", G_TYPE_INT, 188,
165       "systemstream", G_TYPE_BOOLEAN, TRUE, NULL);
166   gst_pad_set_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload), srccaps);
167   gst_caps_unref (srccaps);
168
169   return TRUE;
170 }
171
172 static GstBuffer *
173 gst_rtp_mp2t_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
174 {
175   GstRtpMP2TDepay *rtpmp2tdepay;
176   GstBuffer *outbuf;
177   gint payload_len;
178
179   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (depayload);
180
181   if (G_UNLIKELY (!gst_rtp_buffer_validate (buf)))
182     goto bad_packet;
183
184   payload_len = gst_rtp_buffer_get_payload_len (buf);
185
186   if (G_UNLIKELY (payload_len <= rtpmp2tdepay->skip_first_bytes))
187     goto empty_packet;
188
189   outbuf =
190       gst_rtp_buffer_get_payload_subbuffer (buf, rtpmp2tdepay->skip_first_bytes,
191       -1);
192   gst_buffer_set_caps (outbuf, GST_PAD_CAPS (depayload->srcpad));
193
194   GST_DEBUG ("gst_rtp_mp2t_depay_chain: pushing buffer of size %d",
195       GST_BUFFER_SIZE (outbuf));
196
197   return outbuf;
198
199   /* ERRORS */
200 bad_packet:
201   {
202     GST_ELEMENT_WARNING (rtpmp2tdepay, STREAM, DECODE,
203         (NULL), ("Packet did not validate"));
204     return NULL;
205   }
206 empty_packet:
207   {
208     GST_ELEMENT_WARNING (rtpmp2tdepay, STREAM, DECODE,
209         (NULL), ("Packet was empty"));
210     return NULL;
211   }
212 }
213
214 static void
215 gst_rtp_mp2t_depay_set_property (GObject * object, guint prop_id,
216     const GValue * value, GParamSpec * pspec)
217 {
218   GstRtpMP2TDepay *rtpmp2tdepay;
219
220   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (object);
221
222   switch (prop_id) {
223     case PROP_SKIP_FIRST_BYTES:
224       rtpmp2tdepay->skip_first_bytes = g_value_get_uint (value);
225       break;
226     default:
227       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
228       break;
229   }
230 }
231
232 static void
233 gst_rtp_mp2t_depay_get_property (GObject * object, guint prop_id,
234     GValue * value, GParamSpec * pspec)
235 {
236   GstRtpMP2TDepay *rtpmp2tdepay;
237
238   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (object);
239
240   switch (prop_id) {
241     case PROP_SKIP_FIRST_BYTES:
242       g_value_set_uint (value, rtpmp2tdepay->skip_first_bytes);
243       break;
244     default:
245       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
246       break;
247   }
248 }
249
250 static GstStateChangeReturn
251 gst_rtp_mp2t_depay_change_state (GstElement * element,
252     GstStateChange transition)
253 {
254   GstRtpMP2TDepay *rtpmp2tdepay;
255   GstStateChangeReturn ret;
256
257   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (element);
258
259   switch (transition) {
260     case GST_STATE_CHANGE_NULL_TO_READY:
261       break;
262     case GST_STATE_CHANGE_READY_TO_PAUSED:
263       break;
264     default:
265       break;
266   }
267
268   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
269
270   switch (transition) {
271     case GST_STATE_CHANGE_READY_TO_NULL:
272       break;
273     default:
274       break;
275   }
276   return ret;
277 }
278
279 gboolean
280 gst_rtp_mp2t_depay_plugin_init (GstPlugin * plugin)
281 {
282   return gst_element_register (plugin, "rtpmp2tdepay",
283       GST_RANK_MARGINAL, GST_TYPE_RTP_MP2T_DEPAY);
284 }