Remove blank {set|get}_property/change_state/finalize methods.
[platform/upstream/gstreamer.git] / gst / rtp / gstrtpac3depay.c
1 /* GStreamer
2  * Copyright (C) <2007> 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 "gstrtpac3depay.h"
28
29 GST_DEBUG_CATEGORY_STATIC (rtpac3depay_debug);
30 #define GST_CAT_DEFAULT (rtpac3depay_debug)
31
32 /* elementfactory information */
33 static const GstElementDetails gst_rtp_ac3depay_details =
34 GST_ELEMENT_DETAILS ("RTP AC3 depayloader",
35     "Codec/Depayloader/Network",
36     "Extracts AC3 audio from RTP packets (RFC 4184)",
37     "Wim Taymans <wim.taymans@gmail.com>");
38
39 static GstStaticPadTemplate gst_rtp_ac3_depay_src_template =
40 GST_STATIC_PAD_TEMPLATE ("src",
41     GST_PAD_SRC,
42     GST_PAD_ALWAYS,
43     GST_STATIC_CAPS ("audio/ac3")
44     );
45
46 static GstStaticPadTemplate gst_rtp_ac3_depay_sink_template =
47 GST_STATIC_PAD_TEMPLATE ("sink",
48     GST_PAD_SINK,
49     GST_PAD_ALWAYS,
50     GST_STATIC_CAPS ("application/x-rtp, "
51         "media = (string) \"audio\", "
52         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
53         "clock-rate = (int) { 32000, 44100, 48000 }, "
54         "encoding-name = (string) \"AC3\"")
55     );
56
57 GST_BOILERPLATE (GstRtpAC3Depay, gst_rtp_ac3_depay, GstBaseRTPDepayload,
58     GST_TYPE_BASE_RTP_DEPAYLOAD);
59
60 static gboolean gst_rtp_ac3_depay_setcaps (GstBaseRTPDepayload * depayload,
61     GstCaps * caps);
62 static GstBuffer *gst_rtp_ac3_depay_process (GstBaseRTPDepayload * depayload,
63     GstBuffer * buf);
64
65 static void
66 gst_rtp_ac3_depay_base_init (gpointer klass)
67 {
68   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
69
70   gst_element_class_add_pad_template (element_class,
71       gst_static_pad_template_get (&gst_rtp_ac3_depay_src_template));
72   gst_element_class_add_pad_template (element_class,
73       gst_static_pad_template_get (&gst_rtp_ac3_depay_sink_template));
74
75   gst_element_class_set_details (element_class, &gst_rtp_ac3depay_details);
76 }
77
78 static void
79 gst_rtp_ac3_depay_class_init (GstRtpAC3DepayClass * klass)
80 {
81   GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
82
83   gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
84
85   parent_class = g_type_class_peek_parent (klass);
86
87   gstbasertpdepayload_class->set_caps = gst_rtp_ac3_depay_setcaps;
88   gstbasertpdepayload_class->process = gst_rtp_ac3_depay_process;
89
90   GST_DEBUG_CATEGORY_INIT (rtpac3depay_debug, "rtpac3depay", 0,
91       "MPEG Audio RTP Depayloader");
92 }
93
94 static void
95 gst_rtp_ac3_depay_init (GstRtpAC3Depay * rtpac3depay,
96     GstRtpAC3DepayClass * klass)
97 {
98   /* needed because of GST_BOILERPLATE */
99 }
100
101 static gboolean
102 gst_rtp_ac3_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
103 {
104   GstStructure *structure;
105   GstRtpAC3Depay *rtpac3depay;
106   gint clock_rate;
107   GstCaps *srccaps;
108   gboolean res;
109
110   rtpac3depay = GST_RTP_AC3_DEPAY (depayload);
111
112   structure = gst_caps_get_structure (caps, 0);
113
114   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
115     clock_rate = 90000;         /* default */
116   depayload->clock_rate = clock_rate;
117
118   srccaps = gst_caps_new_simple ("audio/ac3", NULL);
119   res = gst_pad_set_caps (depayload->srcpad, srccaps);
120   gst_caps_unref (srccaps);
121
122   return res;
123 }
124
125 struct frmsize_s
126 {
127   guint16 bit_rate;
128   guint16 frm_size[3];
129 };
130
131 static const struct frmsize_s frmsizecod_tbl[] = {
132   {32, {64, 69, 96}},
133   {32, {64, 70, 96}},
134   {40, {80, 87, 120}},
135   {40, {80, 88, 120}},
136   {48, {96, 104, 144}},
137   {48, {96, 105, 144}},
138   {56, {112, 121, 168}},
139   {56, {112, 122, 168}},
140   {64, {128, 139, 192}},
141   {64, {128, 140, 192}},
142   {80, {160, 174, 240}},
143   {80, {160, 175, 240}},
144   {96, {192, 208, 288}},
145   {96, {192, 209, 288}},
146   {112, {224, 243, 336}},
147   {112, {224, 244, 336}},
148   {128, {256, 278, 384}},
149   {128, {256, 279, 384}},
150   {160, {320, 348, 480}},
151   {160, {320, 349, 480}},
152   {192, {384, 417, 576}},
153   {192, {384, 418, 576}},
154   {224, {448, 487, 672}},
155   {224, {448, 488, 672}},
156   {256, {512, 557, 768}},
157   {256, {512, 558, 768}},
158   {320, {640, 696, 960}},
159   {320, {640, 697, 960}},
160   {384, {768, 835, 1152}},
161   {384, {768, 836, 1152}},
162   {448, {896, 975, 1344}},
163   {448, {896, 976, 1344}},
164   {512, {1024, 1114, 1536}},
165   {512, {1024, 1115, 1536}},
166   {576, {1152, 1253, 1728}},
167   {576, {1152, 1254, 1728}},
168   {640, {1280, 1393, 1920}},
169   {640, {1280, 1394, 1920}}
170 };
171
172 static GstBuffer *
173 gst_rtp_ac3_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
174 {
175   GstRtpAC3Depay *rtpac3depay;
176   GstBuffer *outbuf;
177
178   rtpac3depay = GST_RTP_AC3_DEPAY (depayload);
179
180   {
181     gint payload_len;
182     guint8 *payload;
183     guint16 FT, NF;
184
185     payload_len = gst_rtp_buffer_get_payload_len (buf);
186     payload = gst_rtp_buffer_get_payload (buf);
187
188     if (payload_len <= 2)
189       goto empty_packet;
190
191     /* strip off header
192      *
193      *  0                   1
194      *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
195      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
196      * |    MBZ    | FT|       NF      |
197      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
198      */
199     FT = payload[0] & 0x3;
200     NF = payload[1];
201
202     GST_DEBUG_OBJECT (rtpac3depay, "FT: %d, NF: %d", FT, NF);
203
204     payload_len -= 2;
205     payload += 2;
206
207     /* We don't bother with fragmented packets yet */
208     outbuf = gst_rtp_buffer_get_payload_subbuffer (buf, 2, -1);
209
210     GST_DEBUG_OBJECT (rtpac3depay, "pushing buffer of size %d",
211         GST_BUFFER_SIZE (outbuf));
212
213     return outbuf;
214   }
215
216   return NULL;
217
218   /* ERRORS */
219 empty_packet:
220   {
221     GST_ELEMENT_WARNING (rtpac3depay, STREAM, DECODE,
222         ("Empty Payload."), (NULL));
223     return NULL;
224   }
225 }
226
227 gboolean
228 gst_rtp_ac3_depay_plugin_init (GstPlugin * plugin)
229 {
230   return gst_element_register (plugin, "rtpac3depay",
231       GST_RANK_MARGINAL, GST_TYPE_RTP_AC3_DEPAY);
232 }