Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / gst / rtp / gstrtppcmudepay.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2005> Edgard Lima <edgard.lima@indt.org.br>
4  * Copyright (C) <2005> Zeeshan Ali <zeenix@gmail.com>
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 <gst/rtp/gstrtpbuffer.h>
28 #include "gstrtppcmudepay.h"
29
30 /* RtpPcmuDepay signals and args */
31 enum
32 {
33   /* FILL ME */
34   LAST_SIGNAL
35 };
36
37 enum
38 {
39   ARG_0
40 };
41
42 static GstStaticPadTemplate gst_rtp_pcmu_depay_sink_template =
43     GST_STATIC_PAD_TEMPLATE ("sink",
44     GST_PAD_SINK,
45     GST_PAD_ALWAYS,
46     GST_STATIC_CAPS ("application/x-rtp, "
47         "media = (string) \"audio\", "
48         "payload = (int) " GST_RTP_PAYLOAD_PCMU_STRING ", "
49         "encoding-name = (string) \"PCMU\", clock-rate = (int) 8000; "
50         "application/x-rtp, "
51         "media = (string) \"audio\", "
52         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
53         "encoding-name = (string) \"PCMU\", clock-rate = (int) [1, MAX ]")
54     );
55
56 static GstStaticPadTemplate gst_rtp_pcmu_depay_src_template =
57 GST_STATIC_PAD_TEMPLATE ("src",
58     GST_PAD_SRC,
59     GST_PAD_ALWAYS,
60     GST_STATIC_CAPS ("audio/x-mulaw, "
61         "channels = (int) 1, rate = (int) [1, MAX ]")
62     );
63
64 static GstBuffer *gst_rtp_pcmu_depay_process (GstBaseRTPDepayload * depayload,
65     GstBuffer * buf);
66 static gboolean gst_rtp_pcmu_depay_setcaps (GstBaseRTPDepayload * depayload,
67     GstCaps * caps);
68
69 GST_BOILERPLATE (GstRtpPcmuDepay, gst_rtp_pcmu_depay, GstBaseRTPDepayload,
70     GST_TYPE_BASE_RTP_DEPAYLOAD);
71
72 static void
73 gst_rtp_pcmu_depay_base_init (gpointer klass)
74 {
75   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
76
77   gst_element_class_add_static_pad_template (element_class,
78       &gst_rtp_pcmu_depay_src_template);
79   gst_element_class_add_static_pad_template (element_class,
80       &gst_rtp_pcmu_depay_sink_template);
81   gst_element_class_set_details_simple (element_class, "RTP PCMU depayloader",
82       "Codec/Depayloader/Network/RTP",
83       "Extracts PCMU audio from RTP packets",
84       "Edgard Lima <edgard.lima@indt.org.br>, Zeeshan Ali <zeenix@gmail.com>");
85 }
86
87 static void
88 gst_rtp_pcmu_depay_class_init (GstRtpPcmuDepayClass * klass)
89 {
90   GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
91
92   gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
93
94   gstbasertpdepayload_class->process = gst_rtp_pcmu_depay_process;
95   gstbasertpdepayload_class->set_caps = gst_rtp_pcmu_depay_setcaps;
96 }
97
98 static void
99 gst_rtp_pcmu_depay_init (GstRtpPcmuDepay * rtppcmudepay,
100     GstRtpPcmuDepayClass * klass)
101 {
102   GstBaseRTPDepayload *depayload;
103
104   depayload = GST_BASE_RTP_DEPAYLOAD (rtppcmudepay);
105
106   gst_pad_use_fixed_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload));
107 }
108
109 static gboolean
110 gst_rtp_pcmu_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
111 {
112   GstCaps *srccaps;
113   GstStructure *structure;
114   gboolean ret;
115   gint clock_rate;
116
117   structure = gst_caps_get_structure (caps, 0);
118
119   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
120     clock_rate = 8000;          /* default */
121   depayload->clock_rate = clock_rate;
122
123   srccaps = gst_caps_new_simple ("audio/x-mulaw",
124       "channels", G_TYPE_INT, 1, "rate", G_TYPE_INT, clock_rate, NULL);
125   ret = gst_pad_set_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload), srccaps);
126   gst_caps_unref (srccaps);
127
128   return ret;
129 }
130
131 static GstBuffer *
132 gst_rtp_pcmu_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
133 {
134   GstBuffer *outbuf = NULL;
135   guint len;
136   gboolean marker;
137
138   marker = gst_rtp_buffer_get_marker (buf);
139
140   GST_DEBUG ("process : got %d bytes, mark %d ts %u seqn %d",
141       GST_BUFFER_SIZE (buf), marker,
142       gst_rtp_buffer_get_timestamp (buf), gst_rtp_buffer_get_seq (buf));
143
144   len = gst_rtp_buffer_get_payload_len (buf);
145   outbuf = gst_rtp_buffer_get_payload_buffer (buf);
146
147   if (outbuf) {
148     GST_BUFFER_DURATION (outbuf) =
149         gst_util_uint64_scale_int (len, GST_SECOND, depayload->clock_rate);
150
151     if (marker) {
152       /* mark start of talkspurt with DISCONT */
153       GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
154     }
155   }
156
157   return outbuf;
158 }
159
160 gboolean
161 gst_rtp_pcmu_depay_plugin_init (GstPlugin * plugin)
162 {
163   return gst_element_register (plugin, "rtppcmudepay",
164       GST_RANK_SECONDARY, GST_TYPE_RTP_PCMU_DEPAY);
165 }