gstdepay: check for correct fragment offset
[platform/upstream/gstreamer.git] / gst / rtp / gstrtpsirendepay.c
1 /*
2  * Siren Depayloader Gst Element
3  *
4  *   @author: Youness Alaoui <kakaroto@kakaroto.homelinux.net>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #  include "config.h"
24 #endif
25
26 #include <string.h>
27 #include <stdlib.h>
28 #include <gst/rtp/gstrtpbuffer.h>
29 #include "gstrtpsirendepay.h"
30
31 static GstStaticPadTemplate gst_rtp_siren_depay_sink_template =
32 GST_STATIC_PAD_TEMPLATE ("sink",
33     GST_PAD_SINK,
34     GST_PAD_ALWAYS,
35     GST_STATIC_CAPS ("application/x-rtp, "
36         "media = (string) \"audio\", "
37         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
38         "clock-rate = (int) 16000, "
39         "encoding-name = (string) \"SIREN\", " "dct-length = (int) 320")
40     );
41
42 static GstStaticPadTemplate gst_rtp_siren_depay_src_template =
43 GST_STATIC_PAD_TEMPLATE ("src",
44     GST_PAD_SRC,
45     GST_PAD_ALWAYS,
46     GST_STATIC_CAPS ("audio/x-siren, " "dct-length = (int) 320")
47     );
48
49 static GstBuffer *gst_rtp_siren_depay_process (GstRTPBaseDepayload * depayload,
50     GstBuffer * buf);
51 static gboolean gst_rtp_siren_depay_setcaps (GstRTPBaseDepayload * depayload,
52     GstCaps * caps);
53
54 G_DEFINE_TYPE (GstRTPSirenDepay, gst_rtp_siren_depay,
55     GST_TYPE_RTP_BASE_DEPAYLOAD);
56
57 static void
58 gst_rtp_siren_depay_class_init (GstRTPSirenDepayClass * klass)
59 {
60   GstElementClass *gstelement_class;
61   GstRTPBaseDepayloadClass *gstrtpbasedepayload_class;
62
63   gstelement_class = (GstElementClass *) klass;
64   gstrtpbasedepayload_class = (GstRTPBaseDepayloadClass *) klass;
65
66   gstrtpbasedepayload_class->process = gst_rtp_siren_depay_process;
67   gstrtpbasedepayload_class->set_caps = gst_rtp_siren_depay_setcaps;
68
69   gst_element_class_add_pad_template (gstelement_class,
70       gst_static_pad_template_get (&gst_rtp_siren_depay_src_template));
71   gst_element_class_add_pad_template (gstelement_class,
72       gst_static_pad_template_get (&gst_rtp_siren_depay_sink_template));
73   gst_element_class_set_static_metadata (gstelement_class,
74       "RTP Siren packet depayloader", "Codec/Depayloader/Network/RTP",
75       "Extracts Siren audio from RTP packets",
76       "Philippe Kalaf <philippe.kalaf@collabora.co.uk>");
77 }
78
79 static void
80 gst_rtp_siren_depay_init (GstRTPSirenDepay * rtpsirendepay)
81 {
82
83 }
84
85 static gboolean
86 gst_rtp_siren_depay_setcaps (GstRTPBaseDepayload * depayload, GstCaps * caps)
87 {
88   GstCaps *srccaps;
89   gboolean ret;
90
91   srccaps = gst_caps_new_simple ("audio/x-siren",
92       "dct-length", G_TYPE_INT, 320, NULL);
93   ret = gst_pad_set_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (depayload), srccaps);
94
95   GST_DEBUG ("set caps on source: %" GST_PTR_FORMAT " (ret=%d)", srccaps, ret);
96   gst_caps_unref (srccaps);
97
98   /* always fixed clock rate of 16000 */
99   depayload->clock_rate = 16000;
100
101   return ret;
102 }
103
104 static GstBuffer *
105 gst_rtp_siren_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
106 {
107   GstBuffer *outbuf;
108   GstRTPBuffer rtp = { NULL };
109
110   gst_rtp_buffer_map (buf, GST_MAP_READ, &rtp);
111   outbuf = gst_rtp_buffer_get_payload_buffer (&rtp);
112   gst_rtp_buffer_unmap (&rtp);
113
114   return outbuf;
115 }
116
117 gboolean
118 gst_rtp_siren_depay_plugin_init (GstPlugin * plugin)
119 {
120   return gst_element_register (plugin, "rtpsirendepay",
121       GST_RANK_SECONDARY, GST_TYPE_RTP_SIREN_DEPAY);
122 }