Add C-based local matroska/EBML plugin, remove libmatroska/libebml c++ one
[platform/upstream/gst-plugins-good.git] / gst / matroska / ebml-read.h
1 /* GStreamer EBML I/O
2  * (c) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
3  *
4  * ebml-read.c: read EBML data from file/stream
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __GST_EBML_READ_H__
23 #define __GST_EBML_READ_H__
24
25 #include <glib.h>
26 #include <gst/gst.h>
27 #include <gst/bytestream/bytestream.h>
28
29 G_BEGIN_DECLS
30
31 #define GST_TYPE_EBML_READ \
32   (gst_ebml_read_get_type ())
33 #define GST_EBML_READ(obj) \
34   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_EBML_READ, GstEbmlRead))
35 #define GST_EBML_READ_CLASS(klass) \
36   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_EBML_READ, GstEbmlReadClass))
37 #define GST_IS_EBML_READ(obj) \
38   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_EBML_READ))
39 #define GST_IS_EBML_READ_CLASS(obj) \
40   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_EBML_READ))
41 #define GST_EBML_READ_GET_CLASS(obj) \
42   (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_EBML_READ, GstEbmlReadClass))
43
44 typedef struct _GstEbmlLevel {
45   guint64 start,
46           length;
47 } GstEbmlLevel;
48
49 typedef struct _GstEbmlRead {
50   GstElement parent;
51
52   GstPad *sinkpad;
53   GstByteStream *bs;
54
55   GList *level;
56 } GstEbmlRead;
57
58 typedef struct _GstEbmlReadClass {
59   GstElementClass parent;
60 } GstEbmlReadClass;
61
62 GType    gst_ebml_read_get_type (void);
63
64 guint32  gst_ebml_peek_id       (GstEbmlRead *ebml,
65                                  guint       *level_up);
66 void     gst_ebml_read_seek     (GstEbmlRead *ebml,
67                                  guint64      offset);
68 gboolean gst_ebml_read_skip     (GstEbmlRead *ebml);
69 gboolean gst_ebml_read_buffer   (GstEbmlRead *ebml,
70                                  guint32     *id,
71                                  GstBuffer  **buf);
72 gboolean gst_ebml_read_uint     (GstEbmlRead *ebml,
73                                  guint32     *id,
74                                  guint64     *num);
75 gboolean gst_ebml_read_sint     (GstEbmlRead *ebml,
76                                  guint32     *id,
77                                  gint64      *num);
78 gboolean gst_ebml_read_float    (GstEbmlRead *ebml,
79                                  guint32     *id,
80                                  gdouble     *num);
81 gboolean gst_ebml_read_ascii    (GstEbmlRead *ebml,
82                                  guint32     *id,
83                                  gchar      **str);
84 gboolean gst_ebml_read_utf8     (GstEbmlRead *ebml,
85                                  guint32     *id,
86                                  gchar      **str);
87 gboolean gst_ebml_read_date     (GstEbmlRead *ebml,
88                                  guint32     *id,
89                                  gint64      *date);
90 gboolean gst_ebml_read_master   (GstEbmlRead *ebml,
91                                  guint32     *id);
92 gboolean gst_ebml_read_binary   (GstEbmlRead *ebml,
93                                  guint32     *id,
94                                  guchar     **binary,
95                                  guint64     *length);
96 gboolean gst_ebml_read_header   (GstEbmlRead *read,
97                                  gchar      **doctype,
98                                  guint       *version);
99
100 G_END_DECLS
101
102 #endif /* __GST_EBML_READ_H__ */