2 * Copyright (C) 2012 Smart TV Alliance
3 * Author: Thiago Sousa Santos <thiago.sousa.santos@collabora.com>, Collabora Ltd.
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.
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.
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.
23 #ifndef __GST_MSSDEMUX_H__
24 #define __GST_MSSDEMUX_H__
27 #include <gst/base/gstadapter.h>
28 #include "gstmssmanifest.h"
32 GST_DEBUG_CATEGORY_EXTERN (mssdemux_debug);
33 #define GST_CAT_DEFAULT mssdemux_debug
35 #define GST_TYPE_MSS_DEMUX \
36 (gst_mss_demux_get_type())
37 #define GST_MSS_DEMUX(obj) \
38 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MSS_DEMUX,GstMssDemux))
39 #define GST_MSS_DEMUX_CLASS(klass) \
40 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MSS_DEMUX,GstMssDemuxClass))
41 #define GST_IS_MSS_DEMUX(obj) \
42 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MSS_DEMUX))
43 #define GST_IS_MSS_DEMUX_CLASS(klass) \
44 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MSS_DEMUX))
46 #define GST_MSS_DEMUX_CAST(obj) ((GstMssDemux *)(obj))
48 typedef struct _GstMssDemuxStream GstMssDemuxStream;
49 typedef struct _GstMssDemux GstMssDemux;
50 typedef struct _GstMssDemuxClass GstMssDemuxClass;
52 struct _GstMssDemuxStream {
55 GstMssManifestStream *manifest_stream;
64 GstBuffer *manifest_buffer;
66 GstMssManifest *manifest;
73 struct _GstMssDemuxClass {
74 GstElementClass parent_class;
77 GType gst_mss_demux_get_type (void);
81 #endif /* __GST_MSSDEMUX_H__ */