Move files from gst-plugins-ugly into the "subprojects/gst-plugins-ugly/" subdir
[platform/upstream/gstreamer.git] / subprojects / gst-plugins-ugly / gst / realmedia / rdtmanager.h
1 /* GStreamer
2  * Copyright (C) <2005,2006> Wim Taymans <wim@fluendo.com>
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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 /*
20  * Unless otherwise indicated, Source Code is licensed under MIT license.
21  * See further explanation attached in License Statement (distributed in the file
22  * LICENSE).
23  *
24  * Permission is hereby granted, free of charge, to any person obtaining a copy of
25  * this software and associated documentation files (the "Software"), to deal in
26  * the Software without restriction, including without limitation the rights to
27  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
28  * of the Software, and to permit persons to whom the Software is furnished to do
29  * so, subject to the following conditions:
30  *
31  * The above copyright notice and this permission notice shall be included in all
32  * copies or substantial portions of the Software.
33  *
34  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
35  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
37  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
38  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
39  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
40  * SOFTWARE.
41  */
42
43 #ifndef __GST_RDT_MANAGER_H__
44 #define __GST_RDT_MANAGER_H__
45
46 #include <gst/gst.h>
47
48 G_BEGIN_DECLS
49
50 #define GST_TYPE_RDT_MANAGER            (gst_rdt_manager_get_type())
51 #define GST_IS_RDT_MANAGER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RDT_MANAGER))
52 #define GST_IS_RDT_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RDT_MANAGER))
53 #define GST_RDT_MANAGER(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RDT_MANAGER, GstRDTManager))
54 #define GST_RDT_MANAGER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RDT_MANAGER, GstRDTManagerClass))
55
56 typedef struct _GstRDTManager GstRDTManager;
57 typedef struct _GstRDTManagerClass GstRDTManagerClass;
58 typedef struct _GstRDTManagerSession GstRDTManagerSession;
59
60 struct _GstRDTManager {
61   GstElement  element;
62
63   guint       latency;
64   GSList     *sessions;
65   GstClock   *provided_clock;
66 };
67
68 struct _GstRDTManagerClass {
69   GstElementClass parent_class;
70
71   /* get the caps for pt */
72   GstCaps* (*request_pt_map)    (GstRDTManager *rtpdec, guint session, guint pt);
73
74   void     (*clear_pt_map)      (GstRDTManager *rtpdec);
75
76   void     (*on_new_ssrc)       (GstRDTManager *rtpdec, guint session, guint32 ssrc);
77   void     (*on_ssrc_collision) (GstRDTManager *rtpdec, guint session, guint32 ssrc);
78   void     (*on_ssrc_validated) (GstRDTManager *rtpdec, guint session, guint32 ssrc);
79   void     (*on_ssrc_active)    (GstRDTManager *rtpdec, guint session, guint32 ssrc);
80   void     (*on_ssrc_sdes)      (GstRDTManager *rtpdec, guint session, guint32 ssrc);
81   void     (*on_bye_ssrc)       (GstRDTManager *rtpdec, guint session, guint32 ssrc);
82   void     (*on_bye_timeout)    (GstRDTManager *rtpdec, guint session, guint32 ssrc);
83   void     (*on_timeout)        (GstRDTManager *rtpdec, guint session, guint32 ssrc);
84   void     (*on_npt_stop)       (GstRDTManager *rtpdec, guint session, guint32 ssrc);
85 };
86
87 GType gst_rdt_manager_get_type(void);
88
89 GST_ELEMENT_REGISTER_DECLARE (rdtmanager);
90
91 G_END_DECLS
92
93 #endif /* __GST_RDT_MANAGER_H__ */