rtsp-stream: obtain stream position from pad
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-context.h
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.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 #include <gst/gst.h>
21 #include <gst/rtsp/gstrtspconnection.h>
22
23 #ifndef __GST_RTSP_CONTEXT_H__
24 #define __GST_RTSP_CONTEXT_H__
25
26 G_BEGIN_DECLS
27
28 #define GST_TYPE_RTSP_CONTEXT              (gst_rtsp_context_get_type ())
29
30 typedef struct _GstRTSPContext GstRTSPContext;
31
32 #include "rtsp-server.h"
33 #include "rtsp-media.h"
34 #include "rtsp-media-factory.h"
35 #include "rtsp-session-media.h"
36 #include "rtsp-auth.h"
37 #include "rtsp-thread-pool.h"
38 #include "rtsp-token.h"
39
40 /**
41  * GstRTSPContext:
42  * @server: the server
43  * @conn: the connection
44  * @client: the client
45  * @request: the complete request
46  * @uri: the complete url parsed from @request
47  * @method: the parsed method of @uri
48  * @auth: the current auth object or %NULL
49  * @token: authorisation token
50  * @session: the session, can be %NULL
51  * @sessmedia: the session media for the url can be %NULL
52  * @factory: the media factory for the url, can be %NULL
53  * @media: the media for the url can be %NULL
54  * @stream: the stream for the url can be %NULL
55  * @response: the response
56  * @trans: the stream transport, can be %NULL
57  *
58  * Information passed around containing the context of a request.
59  */
60 struct _GstRTSPContext {
61   GstRTSPServer          *server;
62   GstRTSPConnection      *conn;
63   GstRTSPClient          *client;
64   GstRTSPMessage         *request;
65   GstRTSPUrl             *uri;
66   GstRTSPMethod           method;
67   GstRTSPAuth            *auth;
68   GstRTSPToken           *token;
69   GstRTSPSession         *session;
70   GstRTSPSessionMedia    *sessmedia;
71   GstRTSPMediaFactory    *factory;
72   GstRTSPMedia           *media;
73   GstRTSPStream          *stream;
74   GstRTSPMessage         *response;
75   GstRTSPStreamTransport *trans;
76
77   /*< private >*/
78   gpointer            _gst_reserved[GST_PADDING - 1];
79 };
80
81 GST_EXPORT
82 GType gst_rtsp_context_get_type (void);
83
84 GST_EXPORT
85 GstRTSPContext *     gst_rtsp_context_get_current   (void);
86
87 GST_EXPORT
88 void                 gst_rtsp_context_push_current  (GstRTSPContext * ctx);
89
90 GST_EXPORT
91 void                 gst_rtsp_context_pop_current   (GstRTSPContext * ctx);
92
93
94 G_END_DECLS
95
96 #endif /* __GST_RTSP_CONTEXT_H__ */