3c8edbb4e65465a1697e5b18769456d9806ae383
[platform/upstream/libnice.git] / gst / gstnicesink.h
1 /*
2  * This file is part of the Nice GLib ICE library.
3  *
4  * (C) 2006, 2007 Collabora Ltd.
5  *  Contact: Dafydd Harries
6  * (C) 2006, 2007 Nokia Corporation. All rights reserved.
7  *  Contact: Kai Vehmanen
8  *
9  * The contents of this file are subject to the Mozilla Public License Version
10  * 1.1 (the "License"); you may not use this file except in compliance with
11  * the License. You may obtain a copy of the License at
12  * http://www.mozilla.org/MPL/
13  *
14  * Software distributed under the License is distributed on an "AS IS" basis,
15  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
16  * for the specific language governing rights and limitations under the
17  * License.
18  *
19  * The Original Code is the Nice GLib ICE library.
20  *
21  * The Initial Developers of the Original Code are Collabora Ltd and Nokia
22  * Corporation. All Rights Reserved.
23  *
24  * Contributors:
25  *   Dafydd Harries, Collabora Ltd.
26  *
27  * Alternatively, the contents of this file may be used under the terms of the
28  * the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
29  * case the provisions of LGPL are applicable instead of those above. If you
30  * wish to allow use of your version of this file only under the terms of the
31  * LGPL and not to allow others to use your version of this file under the
32  * MPL, indicate your decision by deleting the provisions above and replace
33  * them with the notice and other provisions required by the LGPL. If you do
34  * not delete the provisions above, a recipient may use your version of this
35  * file under either the MPL or the LGPL.
36  */
37
38 #ifndef _GST_NICE_SINK_H
39 #define _GST_NICE_SINK_H
40
41 #include <gst/gst.h>
42 #include <gst/base/gstbasesink.h>
43
44 #include <nice/nice.h>
45
46 G_BEGIN_DECLS
47
48 #define GST_TYPE_NICE_SINK \
49   (gst_nice_sink_get_type())
50 #define GST_NICE_SINK(obj) \
51   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_NICE_SINK,GstNiceSink))
52 #define GST_NICE_SINK_CLASS(klass) \
53   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_NICE_SINK,GstNiceSinkClass))
54 #define GST_IS_NICE_SINK(obj) \
55   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_NICE_SINK))
56 #define GST_IS_NICE_SINK_CLASS(klass) \
57   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_NICE_SINK))
58
59 typedef struct _GstNiceSink GstNiceSink;
60
61 struct _GstNiceSink
62 {
63   GstBaseSink parent;
64   GstPad *sinkpad;
65   NiceAgent *agent;
66   guint stream_id;
67   guint component_id;
68   gboolean reliable;
69   GCond writable_cond;
70   gulong writable_id;
71   gboolean flushing;
72
73 #if GST_CHECK_VERSION (1,0,0)
74   /* pre-allocated scrap space for render function */
75   GOutputVector *vecs;
76   guint n_vecs;
77   GstMapInfo *maps;
78   guint n_maps;
79   NiceOutputMessage *messages;
80   guint n_messages;
81 #endif
82 };
83
84 typedef struct _GstNiceSinkClass GstNiceSinkClass;
85
86 struct _GstNiceSinkClass
87 {
88   GstBaseSinkClass parent_class;
89 };
90
91 GType gst_nice_sink_get_type (void);
92
93 G_END_DECLS
94
95 #endif