gst-indent
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpL16depay.h
1 /* Gnome-Streamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
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 #ifndef __GST_RTP_L16_PARSE_H__
21 #define __GST_RTP_L16_PARSE_H__
22
23 #include <gst/gst.h>
24 #include "rtp-packet.h"
25 #include "gstrtp-common.h"
26
27 #ifdef __cplusplus
28 extern "C"
29 {
30 #endif                          /* __cplusplus */
31
32 /* Definition of structure storing data for this element. */
33   typedef struct _GstRtpL16Parse GstRtpL16Parse;
34   struct _GstRtpL16Parse
35   {
36     GstElement element;
37
38     GstPad *sinkpad;
39     GstPad *srcpad;
40
41     guint frequency;
42     guint channels;
43
44     rtp_payload_t payload_type;
45   };
46
47 /* Standard definition defining a class for this element. */
48   typedef struct _GstRtpL16ParseClass GstRtpL16ParseClass;
49   struct _GstRtpL16ParseClass
50   {
51     GstElementClass parent_class;
52   };
53
54 /* Standard macros for defining types for this element.  */
55 #define GST_TYPE_RTP_L16_PARSE \
56   (gst_rtpL16parse_get_type())
57 #define GST_RTP_L16_PARSE(obj) \
58   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_L16_PARSE,GstRtpL16Parse))
59 #define GST_RTP_L16_PARSE_CLASS(klass) \
60   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_L16_PARSE,GstRtpL16Parse))
61 #define GST_IS_RTP_L16_PARSE(obj) \
62   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_L16_PARSE))
63 #define GST_IS_RTP_L16_PARSE_CLASS(obj) \
64   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_L16_PARSE))
65
66   gboolean gst_rtpL16parse_plugin_init (GstPlugin * plugin);
67
68 #ifdef __cplusplus
69 }
70 #endif                          /* __cplusplus */
71
72
73 #endif                          /* __GST_RTP_L16_PARSE_H__ */