Remove blank {set|get}_property/change_state/finalize methods.
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpmp2tdepay.c
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., 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 MPEG Transport Stream depayloader",
32     "Codec/Depayloader/Network",
33     "Extracts MPEG2 TS from RTP packets (RFC 2250)",
34     "Wim Taymans <wim.taymans@gmail.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 void
93 gst_rtp_mp2t_depay_base_init (gpointer klass)
94 {
95   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
96
97   gst_element_class_add_pad_template (element_class,
98       gst_static_pad_template_get (&gst_rtp_mp2t_depay_src_template));
99   gst_element_class_add_pad_template (element_class,
100       gst_static_pad_template_get (&gst_rtp_mp2t_depay_sink_template));
101
102   gst_element_class_set_details (element_class, &gst_rtp_mp2tdepay_details);
103 }
104
105 static void
106 gst_rtp_mp2t_depay_class_init (GstRtpMP2TDepayClass * klass)
107 {
108   GObjectClass *gobject_class;
109   GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
110
111   gobject_class = (GObjectClass *) klass;
112
113   gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
114
115   parent_class = g_type_class_peek_parent (klass);
116
117   gstbasertpdepayload_class->process = gst_rtp_mp2t_depay_process;
118   gstbasertpdepayload_class->set_caps = gst_rtp_mp2t_depay_setcaps;
119
120   gobject_class->set_property = gst_rtp_mp2t_depay_set_property;
121   gobject_class->get_property = gst_rtp_mp2t_depay_get_property;
122
123   g_object_class_install_property (gobject_class, PROP_SKIP_FIRST_BYTES,
124       g_param_spec_uint ("skip-first-bytes",
125           "Skip first bytes",
126           "The amount of bytes that need to be skipped at the beginning of the payload",
127           0, G_MAXUINT, 0, G_PARAM_READWRITE));
128
129 }
130
131 static void
132 gst_rtp_mp2t_depay_init (GstRtpMP2TDepay * rtpmp2tdepay,
133     GstRtpMP2TDepayClass * klass)
134 {
135   rtpmp2tdepay->skip_first_bytes = DEFAULT_SKIP_FIRST_BYTES;
136 }
137
138 static gboolean
139 gst_rtp_mp2t_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
140 {
141   GstCaps *srccaps;
142   GstStructure *structure;
143   GstRtpMP2TDepay *rtpmp2tdepay;
144   gint clock_rate;
145   gboolean res;
146
147   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (depayload);
148
149   structure = gst_caps_get_structure (caps, 0);
150   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
151     clock_rate = 90000;         /* default */
152   depayload->clock_rate = clock_rate;
153
154   srccaps = gst_caps_new_simple ("video/mpegts",
155       "packetsize", G_TYPE_INT, 188,
156       "systemstream", G_TYPE_BOOLEAN, TRUE, NULL);
157   res = gst_pad_set_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload), srccaps);
158   gst_caps_unref (srccaps);
159
160   return res;
161 }
162
163 static GstBuffer *
164 gst_rtp_mp2t_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
165 {
166   GstRtpMP2TDepay *rtpmp2tdepay;
167   GstBuffer *outbuf;
168   gint payload_len;
169
170   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (depayload);
171
172   payload_len = gst_rtp_buffer_get_payload_len (buf);
173
174   if (G_UNLIKELY (payload_len <= rtpmp2tdepay->skip_first_bytes))
175     goto empty_packet;
176
177   outbuf =
178       gst_rtp_buffer_get_payload_subbuffer (buf, rtpmp2tdepay->skip_first_bytes,
179       -1);
180
181   GST_DEBUG ("gst_rtp_mp2t_depay_chain: pushing buffer of size %d",
182       GST_BUFFER_SIZE (outbuf));
183
184   return outbuf;
185
186   /* ERRORS */
187 empty_packet:
188   {
189     GST_ELEMENT_WARNING (rtpmp2tdepay, STREAM, DECODE,
190         (NULL), ("Packet was empty"));
191     return NULL;
192   }
193 }
194
195 static void
196 gst_rtp_mp2t_depay_set_property (GObject * object, guint prop_id,
197     const GValue * value, GParamSpec * pspec)
198 {
199   GstRtpMP2TDepay *rtpmp2tdepay;
200
201   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (object);
202
203   switch (prop_id) {
204     case PROP_SKIP_FIRST_BYTES:
205       rtpmp2tdepay->skip_first_bytes = g_value_get_uint (value);
206       break;
207     default:
208       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
209       break;
210   }
211 }
212
213 static void
214 gst_rtp_mp2t_depay_get_property (GObject * object, guint prop_id,
215     GValue * value, GParamSpec * pspec)
216 {
217   GstRtpMP2TDepay *rtpmp2tdepay;
218
219   rtpmp2tdepay = GST_RTP_MP2T_DEPAY (object);
220
221   switch (prop_id) {
222     case PROP_SKIP_FIRST_BYTES:
223       g_value_set_uint (value, rtpmp2tdepay->skip_first_bytes);
224       break;
225     default:
226       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
227       break;
228   }
229 }
230
231 gboolean
232 gst_rtp_mp2t_depay_plugin_init (GstPlugin * plugin)
233 {
234   return gst_element_register (plugin, "rtpmp2tdepay",
235       GST_RANK_MARGINAL, GST_TYPE_RTP_MP2T_DEPAY);
236 }