upload tizen1.0 source
[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_DYNAMIC_STRING ", "
49         "clock-rate = (int) 8000, " "encoding-name = (string) \"PCMU\";"
50         "application/x-rtp, "
51         "media = (string) \"audio\", "
52         "payload = (int) " GST_RTP_PAYLOAD_PCMU_STRING ", "
53         "clock-rate = (int) 8000")
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, channels = (int) 1, rate = (int) 8000")
61     );
62
63 static GstBuffer *gst_rtp_pcmu_depay_process (GstBaseRTPDepayload * depayload,
64     GstBuffer * buf);
65 static gboolean gst_rtp_pcmu_depay_setcaps (GstBaseRTPDepayload * depayload,
66     GstCaps * caps);
67
68 GST_BOILERPLATE (GstRtpPcmuDepay, gst_rtp_pcmu_depay, GstBaseRTPDepayload,
69     GST_TYPE_BASE_RTP_DEPAYLOAD);
70
71 static void
72 gst_rtp_pcmu_depay_base_init (gpointer klass)
73 {
74   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
75
76   gst_element_class_add_pad_template (element_class,
77       gst_static_pad_template_get (&gst_rtp_pcmu_depay_src_template));
78   gst_element_class_add_pad_template (element_class,
79       gst_static_pad_template_get (&gst_rtp_pcmu_depay_sink_template));
80   gst_element_class_set_details_simple (element_class, "RTP PCMU depayloader",
81       "Codec/Depayloader/Network/RTP",
82       "Extracts PCMU audio from RTP packets",
83       "Edgard Lima <edgard.lima@indt.org.br>, Zeeshan Ali <zeenix@gmail.com>");
84 }
85
86 static void
87 gst_rtp_pcmu_depay_class_init (GstRtpPcmuDepayClass * klass)
88 {
89   GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
90
91   gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
92
93   gstbasertpdepayload_class->process = gst_rtp_pcmu_depay_process;
94   gstbasertpdepayload_class->set_caps = gst_rtp_pcmu_depay_setcaps;
95 }
96
97 static void
98 gst_rtp_pcmu_depay_init (GstRtpPcmuDepay * rtppcmudepay,
99     GstRtpPcmuDepayClass * klass)
100 {
101   GstBaseRTPDepayload *depayload;
102
103   depayload = GST_BASE_RTP_DEPAYLOAD (rtppcmudepay);
104
105   gst_pad_use_fixed_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload));
106 }
107
108 static gboolean
109 gst_rtp_pcmu_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
110 {
111   GstCaps *srccaps;
112   GstStructure *structure;
113   gboolean ret;
114   gint clock_rate;
115
116   structure = gst_caps_get_structure (caps, 0);
117
118   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
119     clock_rate = 8000;          /* default */
120   depayload->clock_rate = clock_rate;
121
122   srccaps = gst_caps_new_simple ("audio/x-mulaw",
123       "channels", G_TYPE_INT, 1, "rate", G_TYPE_INT, clock_rate, NULL);
124   ret = gst_pad_set_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload), srccaps);
125   gst_caps_unref (srccaps);
126
127   return ret;
128 }
129
130 static GstBuffer *
131 gst_rtp_pcmu_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
132 {
133   GstBuffer *outbuf = NULL;
134   guint len;
135   gboolean marker;
136
137   marker = gst_rtp_buffer_get_marker (buf);
138
139   GST_DEBUG ("process : got %d bytes, mark %d ts %u seqn %d",
140       GST_BUFFER_SIZE (buf), marker,
141       gst_rtp_buffer_get_timestamp (buf), gst_rtp_buffer_get_seq (buf));
142
143   len = gst_rtp_buffer_get_payload_len (buf);
144   outbuf = gst_rtp_buffer_get_payload_buffer (buf);
145
146   GST_BUFFER_DURATION (outbuf) =
147       gst_util_uint64_scale_int (len, GST_SECOND, depayload->clock_rate);
148
149   if (marker) {
150     /* mark start of talkspurt with DISCONT */
151     GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
152   }
153
154   return outbuf;
155 }
156
157 gboolean
158 gst_rtp_pcmu_depay_plugin_init (GstPlugin * plugin)
159 {
160   return gst_element_register (plugin, "rtppcmudepay",
161       GST_RANK_SECONDARY, GST_TYPE_RTP_PCMU_DEPAY);
162 }