gst-indent
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpL16pay.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
21 #ifndef __GST_RTP_L16_ENC_H__
22 #define __GST_RTP_L16_ENC_H__
23
24 #include <gst/gst.h>
25 #include "rtp-packet.h"
26 #include "gstrtp-common.h"
27
28 #ifdef __cplusplus
29 extern "C"
30 {
31 #endif                          /* __cplusplus */
32
33 /* Definition of structure storing data for this element. */
34   typedef struct _GstRtpL16Enc GstRtpL16Enc;
35   struct _GstRtpL16Enc
36   {
37     GstElement element;
38
39     GstPad *sinkpad;
40     GstPad *srcpad;
41
42     guint frequency;
43     guint channels;
44
45     /* the timestamp of the next frame */
46     guint64 next_time;
47     /* the interval between frames */
48     guint64 time_interval;
49
50     guint32 ssrc;
51     guint16 seq;
52   };
53
54 /* Standard definition defining a class for this element. */
55   typedef struct _GstRtpL16EncClass GstRtpL16EncClass;
56   struct _GstRtpL16EncClass
57   {
58     GstElementClass parent_class;
59   };
60
61 /* Standard macros for defining types for this element.  */
62 #define GST_TYPE_RTP_L16_ENC \
63   (gst_rtpL16enc_get_type())
64 #define GST_RTP_L16_ENC(obj) \
65   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_L16_ENC,GstRtpL16Enc))
66 #define GST_RTP_L16_ENC_CLASS(klass) \
67   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_L16_ENC,GstRtpL16Enc))
68 #define GST_IS_RTP_L16_ENC(obj) \
69   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_L16_ENC))
70 #define GST_IS_RTP_L16_ENC_CLASS(obj) \
71   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_L16_ENC))
72
73   gboolean gst_rtpL16enc_plugin_init (GstPlugin * plugin);
74
75 #ifdef __cplusplus
76 }
77 #endif                          /* __cplusplus */
78
79
80 #endif                          /* __GST_RTP_L16_ENC_H__ */