Added gst-plugins-base-subtitles0.10-0.10.34 for Meego Harmattan 1.2
[mafwsubrenderer] / gst-plugins-base-subtitles0.10 / gst-libs / gst / rtp / gstbasertpaudiopayload.h
1 /* GStreamer
2  * Copyright (C) <2006> Philippe Khalaf <philippe.kalaf@collabora.co.uk>
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_BASE_RTP_AUDIO_PAYLOAD_H__
21 #define __GST_BASE_RTP_AUDIO_PAYLOAD_H__
22
23 #include <gst/gst.h>
24 #include <gst/rtp/gstbasertppayload.h>
25 #include <gst/base/gstadapter.h>
26
27 G_BEGIN_DECLS
28
29 typedef struct _GstBaseRTPAudioPayload GstBaseRTPAudioPayload;
30 typedef struct _GstBaseRTPAudioPayloadClass GstBaseRTPAudioPayloadClass;
31
32 typedef struct _GstBaseRTPAudioPayloadPrivate GstBaseRTPAudioPayloadPrivate;
33
34 #define GST_TYPE_BASE_RTP_AUDIO_PAYLOAD \
35   (gst_base_rtp_audio_payload_get_type())
36 #define GST_BASE_RTP_AUDIO_PAYLOAD(obj) \
37   (G_TYPE_CHECK_INSTANCE_CAST((obj), \
38   GST_TYPE_BASE_RTP_AUDIO_PAYLOAD,GstBaseRTPAudioPayload))
39 #define GST_BASE_RTP_AUDIO_PAYLOAD_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_CAST((klass), \
41   GST_TYPE_BASE_RTP_AUDIO_PAYLOAD,GstBaseRTPAudioPayloadClass))
42 #define GST_IS_BASE_RTP_AUDIO_PAYLOAD(obj) \
43   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BASE_RTP_AUDIO_PAYLOAD))
44 #define GST_IS_BASE_RTP_AUDIO_PAYLOAD_CLASS(klass) \
45   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_BASE_RTP_AUDIO_PAYLOAD))
46 #define GST_BASE_RTP_AUDIO_PAYLOAD_CAST(obj) \
47   ((GstBaseRTPAudioPayload *) (obj))
48
49 struct _GstBaseRTPAudioPayload
50 {
51   GstBaseRTPPayload payload;
52
53   GstBaseRTPAudioPayloadPrivate *priv;
54
55   GstClockTime base_ts;
56   gint frame_size;
57   gint frame_duration;
58
59   gint sample_size;
60
61   gpointer _gst_reserved[GST_PADDING];
62 };
63
64 struct _GstBaseRTPAudioPayloadClass
65 {
66   GstBaseRTPPayloadClass parent_class;
67
68   gpointer _gst_reserved[GST_PADDING];
69 };
70
71 GType gst_base_rtp_audio_payload_get_type (void);
72
73 /* configure frame based */
74 void            gst_base_rtp_audio_payload_set_frame_based        (GstBaseRTPAudioPayload *basertpaudiopayload);
75
76 void            gst_base_rtp_audio_payload_set_frame_options      (GstBaseRTPAudioPayload *basertpaudiopayload,
77                                                                    gint frame_duration, gint frame_size);
78
79 /* configure sample based */
80 void            gst_base_rtp_audio_payload_set_sample_based       (GstBaseRTPAudioPayload *basertpaudiopayload);
81 void            gst_base_rtp_audio_payload_set_sample_options     (GstBaseRTPAudioPayload *basertpaudiopayload,
82                                                                    gint sample_size);
83 void            gst_base_rtp_audio_payload_set_samplebits_options (GstBaseRTPAudioPayload *basertpaudiopayload,
84                                                                    gint sample_size);
85
86 /* get the internal adapter */
87 GstAdapter*     gst_base_rtp_audio_payload_get_adapter            (GstBaseRTPAudioPayload *basertpaudiopayload);
88
89 /* push and flushing data */
90 GstFlowReturn   gst_base_rtp_audio_payload_push                   (GstBaseRTPAudioPayload * baseaudiopayload,
91                                                                    const guint8 * data, guint payload_len,
92                                                                    GstClockTime timestamp);
93 GstFlowReturn   gst_base_rtp_audio_payload_flush                  (GstBaseRTPAudioPayload * baseaudiopayload,
94                                                                    guint payload_len, GstClockTime timestamp);
95
96 G_END_DECLS
97
98 #endif /* __GST_BASE_RTP_AUDIO_PAYLOAD_H__ */