rtp: Remove dead assignments and resulting unneeded variables.
[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   gint clock_rate;
106   GstCaps *srccaps;
107   gboolean res;
108
109   structure = gst_caps_get_structure (caps, 0);
110
111   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
112     clock_rate = 90000;         /* default */
113   depayload->clock_rate = clock_rate;
114
115   srccaps = gst_caps_new_simple ("audio/ac3", NULL);
116   res = gst_pad_set_caps (depayload->srcpad, srccaps);
117   gst_caps_unref (srccaps);
118
119   return res;
120 }
121
122 struct frmsize_s
123 {
124   guint16 bit_rate;
125   guint16 frm_size[3];
126 };
127
128 static const struct frmsize_s frmsizecod_tbl[] = {
129   {32, {64, 69, 96}},
130   {32, {64, 70, 96}},
131   {40, {80, 87, 120}},
132   {40, {80, 88, 120}},
133   {48, {96, 104, 144}},
134   {48, {96, 105, 144}},
135   {56, {112, 121, 168}},
136   {56, {112, 122, 168}},
137   {64, {128, 139, 192}},
138   {64, {128, 140, 192}},
139   {80, {160, 174, 240}},
140   {80, {160, 175, 240}},
141   {96, {192, 208, 288}},
142   {96, {192, 209, 288}},
143   {112, {224, 243, 336}},
144   {112, {224, 244, 336}},
145   {128, {256, 278, 384}},
146   {128, {256, 279, 384}},
147   {160, {320, 348, 480}},
148   {160, {320, 349, 480}},
149   {192, {384, 417, 576}},
150   {192, {384, 418, 576}},
151   {224, {448, 487, 672}},
152   {224, {448, 488, 672}},
153   {256, {512, 557, 768}},
154   {256, {512, 558, 768}},
155   {320, {640, 696, 960}},
156   {320, {640, 697, 960}},
157   {384, {768, 835, 1152}},
158   {384, {768, 836, 1152}},
159   {448, {896, 975, 1344}},
160   {448, {896, 976, 1344}},
161   {512, {1024, 1114, 1536}},
162   {512, {1024, 1115, 1536}},
163   {576, {1152, 1253, 1728}},
164   {576, {1152, 1254, 1728}},
165   {640, {1280, 1393, 1920}},
166   {640, {1280, 1394, 1920}}
167 };
168
169 static GstBuffer *
170 gst_rtp_ac3_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
171 {
172   GstRtpAC3Depay *rtpac3depay;
173   GstBuffer *outbuf;
174
175   rtpac3depay = GST_RTP_AC3_DEPAY (depayload);
176
177   {
178     guint8 *payload;
179     guint16 FT, NF;
180
181     if (gst_rtp_buffer_get_payload_len (buf) < 2)
182       goto empty_packet;
183
184     payload = gst_rtp_buffer_get_payload (buf);
185
186     /* strip off header
187      *
188      *  0                   1
189      *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
190      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
191      * |    MBZ    | FT|       NF      |
192      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
193      */
194     FT = payload[0] & 0x3;
195     NF = payload[1];
196
197     GST_DEBUG_OBJECT (rtpac3depay, "FT: %d, NF: %d", FT, NF);
198
199     /* We don't bother with fragmented packets yet */
200     outbuf = gst_rtp_buffer_get_payload_subbuffer (buf, 2, -1);
201
202     GST_DEBUG_OBJECT (rtpac3depay, "pushing buffer of size %d",
203         GST_BUFFER_SIZE (outbuf));
204
205     return outbuf;
206   }
207
208   return NULL;
209
210   /* ERRORS */
211 empty_packet:
212   {
213     GST_ELEMENT_WARNING (rtpac3depay, STREAM, DECODE,
214         ("Empty Payload."), (NULL));
215     return NULL;
216   }
217 }
218
219 gboolean
220 gst_rtp_ac3_depay_plugin_init (GstPlugin * plugin)
221 {
222   return gst_element_register (plugin, "rtpac3depay",
223       GST_RANK_MARGINAL, GST_TYPE_RTP_AC3_DEPAY);
224 }