gstdepay: check for correct fragment offset
[platform/upstream/gstreamer.git] / gst / rtp / gstrtpgsmdepay.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2005> Zeeshan Ali <zeenix@gmail.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #  include "config.h"
23 #endif
24
25 #include <string.h>
26 #include <gst/rtp/gstrtpbuffer.h>
27 #include "gstrtpgsmdepay.h"
28
29 GST_DEBUG_CATEGORY_STATIC (rtpgsmdepay_debug);
30 #define GST_CAT_DEFAULT (rtpgsmdepay_debug)
31
32 /* RTPGSMDepay signals and args */
33 enum
34 {
35   /* FILL ME */
36   LAST_SIGNAL
37 };
38
39 static GstStaticPadTemplate gst_rtp_gsm_depay_src_template =
40 GST_STATIC_PAD_TEMPLATE ("src",
41     GST_PAD_SRC,
42     GST_PAD_ALWAYS,
43     GST_STATIC_CAPS ("audio/x-gsm, " "rate = (int) 8000, " "channels = 1")
44     );
45
46 static GstStaticPadTemplate gst_rtp_gsm_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) 8000, " "encoding-name = (string) \"GSM\";"
54         "application/x-rtp, "
55         "media = (string) \"audio\", "
56         "payload = (int) " GST_RTP_PAYLOAD_GSM_STRING ", "
57         "clock-rate = (int) 8000")
58     );
59
60 static GstBuffer *gst_rtp_gsm_depay_process (GstRTPBaseDepayload * _depayload,
61     GstBuffer * buf);
62 static gboolean gst_rtp_gsm_depay_setcaps (GstRTPBaseDepayload * _depayload,
63     GstCaps * caps);
64
65 #define gst_rtp_gsm_depay_parent_class parent_class
66 G_DEFINE_TYPE (GstRTPGSMDepay, gst_rtp_gsm_depay, GST_TYPE_RTP_BASE_DEPAYLOAD);
67
68 static void
69 gst_rtp_gsm_depay_class_init (GstRTPGSMDepayClass * klass)
70 {
71   GstElementClass *gstelement_class;
72   GstRTPBaseDepayloadClass *gstrtpbase_depayload_class;
73
74   gstelement_class = (GstElementClass *) klass;
75   gstrtpbase_depayload_class = (GstRTPBaseDepayloadClass *) klass;
76
77   gst_element_class_add_pad_template (gstelement_class,
78       gst_static_pad_template_get (&gst_rtp_gsm_depay_src_template));
79   gst_element_class_add_pad_template (gstelement_class,
80       gst_static_pad_template_get (&gst_rtp_gsm_depay_sink_template));
81
82   gst_element_class_set_static_metadata (gstelement_class,
83       "RTP GSM depayloader", "Codec/Depayloader/Network/RTP",
84       "Extracts GSM audio from RTP packets", "Zeeshan Ali <zeenix@gmail.com>");
85
86   gstrtpbase_depayload_class->process = gst_rtp_gsm_depay_process;
87   gstrtpbase_depayload_class->set_caps = gst_rtp_gsm_depay_setcaps;
88
89   GST_DEBUG_CATEGORY_INIT (rtpgsmdepay_debug, "rtpgsmdepay", 0,
90       "GSM Audio RTP Depayloader");
91 }
92
93 static void
94 gst_rtp_gsm_depay_init (GstRTPGSMDepay * rtpgsmdepay)
95 {
96 }
97
98 static gboolean
99 gst_rtp_gsm_depay_setcaps (GstRTPBaseDepayload * depayload, GstCaps * caps)
100 {
101   GstCaps *srccaps;
102   gboolean ret;
103   GstStructure *structure;
104   gint clock_rate;
105
106   structure = gst_caps_get_structure (caps, 0);
107
108   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
109     clock_rate = 8000;          /* default */
110   depayload->clock_rate = clock_rate;
111
112   srccaps = gst_caps_new_simple ("audio/x-gsm",
113       "channels", G_TYPE_INT, 1, "rate", G_TYPE_INT, clock_rate, NULL);
114   ret = gst_pad_set_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (depayload), srccaps);
115   gst_caps_unref (srccaps);
116
117   return ret;
118 }
119
120 static GstBuffer *
121 gst_rtp_gsm_depay_process (GstRTPBaseDepayload * _depayload, GstBuffer * buf)
122 {
123   GstBuffer *outbuf = NULL;
124   gboolean marker;
125   GstRTPBuffer rtp = { NULL };
126
127   gst_rtp_buffer_map (buf, GST_MAP_READ, &rtp);
128
129   marker = gst_rtp_buffer_get_marker (&rtp);
130
131   GST_DEBUG ("process : got %" G_GSIZE_FORMAT " bytes, mark %d ts %u seqn %d",
132       gst_buffer_get_size (buf), marker,
133       gst_rtp_buffer_get_timestamp (&rtp), gst_rtp_buffer_get_seq (&rtp));
134
135   outbuf = gst_rtp_buffer_get_payload_buffer (&rtp);
136
137   gst_rtp_buffer_unmap (&rtp);
138
139   if (marker && outbuf) {
140     /* mark start of talkspurt with DISCONT */
141     GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
142   }
143
144   return outbuf;
145 }
146
147 gboolean
148 gst_rtp_gsm_depay_plugin_init (GstPlugin * plugin)
149 {
150   return gst_element_register (plugin, "rtpgsmdepay",
151       GST_RANK_SECONDARY, GST_TYPE_RTP_GSM_DEPAY);
152 }