Merge remote-tracking branch 'origin/master' into 0.11
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpmp1sdepay.c
1 /* GStreamer
2  * Copyright (C) <2008> 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 "gstrtpmp1sdepay.h"
28
29 /* RtpMP1SDepay signals and args */
30 enum
31 {
32   /* FILL ME */
33   LAST_SIGNAL
34 };
35
36 enum
37 {
38   PROP_0,
39   PROP_LAST
40 };
41
42 static GstStaticPadTemplate gst_rtp_mp1s_depay_src_template =
43 GST_STATIC_PAD_TEMPLATE ("src",
44     GST_PAD_SRC,
45     GST_PAD_ALWAYS,
46     GST_STATIC_CAPS ("video/mpeg,systemstream=(boolean)true")
47     );
48
49 /* The spec says video/MP1S but I have seen streams with other/MP1S so we will
50  * allow them both */
51 static GstStaticPadTemplate gst_rtp_mp1s_depay_sink_template =
52     GST_STATIC_PAD_TEMPLATE ("sink",
53     GST_PAD_SINK,
54     GST_PAD_ALWAYS,
55     GST_STATIC_CAPS ("application/x-rtp, "
56         "media = (string) \"other\", "
57         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
58         "clock-rate = (int) [1, MAX ], " "encoding-name = (string) \"MP1S\";"
59         "application/x-rtp, "
60         "media = (string) \"video\", "
61         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
62         "clock-rate = (int) [1, MAX ], " "encoding-name = (string) \"MP1S\"")
63     );
64
65 G_DEFINE_TYPE (GstRtpMP1SDepay, gst_rtp_mp1s_depay,
66     GST_TYPE_RTP_BASE_DEPAYLOAD);
67
68 static gboolean gst_rtp_mp1s_depay_setcaps (GstRTPBaseDepayload * depayload,
69     GstCaps * caps);
70 static GstBuffer *gst_rtp_mp1s_depay_process (GstRTPBaseDepayload * depayload,
71     GstBuffer * buf);
72
73 static void
74 gst_rtp_mp1s_depay_class_init (GstRtpMP1SDepayClass * klass)
75 {
76   GstElementClass *gstelement_class;
77   GstRTPBaseDepayloadClass *gstrtpbasedepayload_class;
78
79   gstelement_class = (GstElementClass *) klass;
80   gstrtpbasedepayload_class = (GstRTPBaseDepayloadClass *) klass;
81
82   gstrtpbasedepayload_class->process = gst_rtp_mp1s_depay_process;
83   gstrtpbasedepayload_class->set_caps = gst_rtp_mp1s_depay_setcaps;
84
85   gst_element_class_add_pad_template (gstelement_class,
86       gst_static_pad_template_get (&gst_rtp_mp1s_depay_src_template));
87   gst_element_class_add_pad_template (gstelement_class,
88       gst_static_pad_template_get (&gst_rtp_mp1s_depay_sink_template));
89
90   gst_element_class_set_details_simple (gstelement_class,
91       "RTP MPEG1 System Stream depayloader", "Codec/Depayloader/Network/RTP",
92       "Extracts MPEG1 System Streams from RTP packets (RFC 3555)",
93       "Wim Taymans <wim.taymans@gmail.com>");
94 }
95
96 static void
97 gst_rtp_mp1s_depay_init (GstRtpMP1SDepay * rtpmp1sdepay)
98 {
99 }
100
101 static gboolean
102 gst_rtp_mp1s_depay_setcaps (GstRTPBaseDepayload * depayload, GstCaps * caps)
103 {
104   GstCaps *srccaps;
105   GstStructure *structure;
106   gint clock_rate;
107   gboolean res;
108
109   structure = gst_caps_get_structure (caps, 0);
110   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
111     clock_rate = 90000;         /* default */
112   depayload->clock_rate = clock_rate;
113
114   srccaps = gst_caps_new_simple ("video/mpeg",
115       "systemstream", G_TYPE_BOOLEAN, TRUE, NULL);
116   res = gst_pad_set_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (depayload), srccaps);
117   gst_caps_unref (srccaps);
118
119   return res;
120 }
121
122 static GstBuffer *
123 gst_rtp_mp1s_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
124 {
125   GstBuffer *outbuf;
126   GstRTPBuffer rtp = { NULL };
127
128   gst_rtp_buffer_map (buf, GST_MAP_READ, &rtp);
129   outbuf = gst_rtp_buffer_get_payload_buffer (&rtp);
130   gst_rtp_buffer_unmap (&rtp);
131
132   if (outbuf)
133     GST_DEBUG ("gst_rtp_mp1s_depay_chain: pushing buffer of size %"
134         G_GSIZE_FORMAT, gst_buffer_get_size (outbuf));
135
136   return outbuf;
137 }
138
139 gboolean
140 gst_rtp_mp1s_depay_plugin_init (GstPlugin * plugin)
141 {
142   return gst_element_register (plugin, "rtpmp1sdepay",
143       GST_RANK_SECONDARY, GST_TYPE_RTP_MP1S_DEPAY);
144 }