9dee169e880c0b988b971b7e54d01350905297af
[platform/upstream/gstreamer.git] / ext / smoothstreaming / gstmssdemux.h
1 /* GStreamer
2  * Copyright (C) 2012 Smart TV Alliance
3  *  Author: Thiago Sousa Santos <thiago.sousa.santos@collabora.com>, Collabora Ltd.
4  *
5  * gstmssdemux.h:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GST_MSSDEMUX_H__
24 #define __GST_MSSDEMUX_H__
25
26 #include <gst/gst.h>
27 #include <gst/base/gstadapter.h>
28 #include "gstmssmanifest.h"
29 #include "gsturidownloader.h"
30
31 G_BEGIN_DECLS
32
33 GST_DEBUG_CATEGORY_EXTERN (mssdemux_debug);
34 #define GST_CAT_DEFAULT mssdemux_debug
35
36 #define GST_TYPE_MSS_DEMUX \
37   (gst_mss_demux_get_type())
38 #define GST_MSS_DEMUX(obj) \
39   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MSS_DEMUX,GstMssDemux))
40 #define GST_MSS_DEMUX_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MSS_DEMUX,GstMssDemuxClass))
42 #define GST_IS_MSS_DEMUX(obj) \
43   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MSS_DEMUX))
44 #define GST_IS_MSS_DEMUX_CLASS(klass) \
45   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MSS_DEMUX))
46
47 #define GST_MSS_DEMUX_CAST(obj) ((GstMssDemux *)(obj))
48
49 typedef struct _GstMssDemuxStream GstMssDemuxStream;
50 typedef struct _GstMssDemux GstMssDemux;
51 typedef struct _GstMssDemuxClass GstMssDemuxClass;
52
53 struct _GstMssDemuxStream {
54   GstPad *pad;
55
56   GstMssDemux *parent;
57
58   GstMssStream *manifest_stream;
59
60   GstUriDownloader *downloader;
61
62   GstEvent *pending_newsegment;
63
64   /* Streaming task */
65   GstTask *stream_task;
66   GStaticRecMutex stream_lock;
67 };
68
69 struct _GstMssDemux {
70   GstElement element;
71
72   /* pads */
73   GstPad *sinkpad;
74
75   GstBuffer *manifest_buffer;
76
77   GstMssManifest *manifest;
78   gchar *base_url;
79
80   GSList *streams;
81   guint n_videos;
82   guint n_audios;
83
84 };
85
86 struct _GstMssDemuxClass {
87   GstElementClass parent_class;
88 };
89
90 GType gst_mss_demux_get_type (void);
91
92 G_END_DECLS
93
94 #endif /* __GST_MSSDEMUX_H__ */