matroska: use math-compat.h for NAN define
[platform/upstream/gst-plugins-good.git] / gst / matroska / matroska-read-common.h
1 /* GStreamer Matroska muxer/demuxer
2  * (c) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
3  * (c) 2011 Debarshi Ray <rishi@gnu.org>
4  *
5  * matroska-read-common.h: shared by matroska file/stream demuxer and parser
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., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef __GST_MATROSKA_READ_COMMON_H__
24 #define __GST_MATROSKA_READ_COMMON_H__
25
26 #include <glib.h>
27 #include <gst/gst.h>
28 #include <gst/base/gstadapter.h>
29
30 #include "matroska-ids.h"
31
32 G_BEGIN_DECLS
33
34 GST_DEBUG_CATEGORY_EXTERN(matroskareadcommon_debug);
35
36 typedef enum {
37   GST_MATROSKA_READ_STATE_START,
38   GST_MATROSKA_READ_STATE_SEGMENT,
39   GST_MATROSKA_READ_STATE_HEADER,
40   GST_MATROSKA_READ_STATE_DATA,
41   GST_MATROSKA_READ_STATE_SEEK,
42   GST_MATROSKA_READ_STATE_SCANNING
43 } GstMatroskaReadState;
44
45 typedef struct _GstMatroskaReadCommon {
46 #if 0
47   GstIndex                *element_index;
48   gint                     element_index_writer_id;
49 #endif
50
51   /* pads */
52   GstPad                  *sinkpad;
53   GPtrArray               *src;
54   guint                    num_streams;
55
56   /* metadata */
57   gchar                   *muxing_app;
58   gchar                   *writing_app;
59   gint64                   created;
60
61   /* state */
62   GstMatroskaReadState     state;
63
64   /* stream type */
65   gboolean                 is_webm;
66   gboolean                 has_video;
67
68   /* did we parse cues/tracks/segmentinfo already? */
69   gboolean                 index_parsed;
70   gboolean                 segmentinfo_parsed;
71   gboolean                 attachments_parsed;
72   gboolean                 chapters_parsed;
73   GList                   *tags_parsed;
74
75   /* chapters stuff */
76   GstToc                  *toc;
77   gboolean                toc_updated;
78
79   /* start-of-segment and length */
80   guint64                  ebml_segment_start;
81   guint64                  ebml_segment_length;
82
83   /* a cue (index) table */
84   GArray                  *index;
85
86   /* timescale in the file */
87   guint64                  time_scale;
88
89   /* keeping track of playback position */
90   GstSegment               segment;
91
92   GstTagList              *global_tags;
93   gboolean                 global_tags_changed;
94
95   /* pull mode caching */
96   GstBuffer *cached_buffer;
97   guint8 *cached_data;
98   GstMapInfo cached_map;
99
100   /* push and pull mode */
101   guint64                  offset;
102
103   /* push based mode usual suspects */
104   GstAdapter              *adapter;
105
106   /* cache for track tags that forward-reference their tracks */
107   GHashTable *cached_track_taglists ;
108  
109 } GstMatroskaReadCommon;
110
111 GstFlowReturn gst_matroska_decode_content_encodings (GArray * encodings);
112 gboolean gst_matroska_decode_data (GArray * encodings, gpointer * data_out,
113     gsize * size_out, GstMatroskaTrackEncodingScope scope, gboolean free);
114 gint gst_matroska_index_seek_find (GstMatroskaIndex * i1, GstClockTime * time,
115     gpointer user_data);
116 GstMatroskaIndex * gst_matroska_read_common_do_index_seek (
117     GstMatroskaReadCommon * common, GstMatroskaTrackContext * track, gint64
118     seek_pos, GArray ** _index, gint * _entry_index, GstSearchMode snap_dir);
119 void gst_matroska_read_common_found_global_tag (GstMatroskaReadCommon * common,
120     GstElement * el, GstTagList * taglist);
121 gint64 gst_matroska_read_common_get_length (GstMatroskaReadCommon * common);
122 GstMatroskaTrackContext * gst_matroska_read_common_get_seek_track (
123     GstMatroskaReadCommon * common, GstMatroskaTrackContext * track);
124 GstFlowReturn gst_matroska_read_common_parse_index (GstMatroskaReadCommon *
125     common, GstEbmlRead * ebml);
126 GstFlowReturn gst_matroska_read_common_parse_info (GstMatroskaReadCommon *
127     common, GstElement * el, GstEbmlRead * ebml);
128 GstFlowReturn gst_matroska_read_common_parse_attachments (
129     GstMatroskaReadCommon * common, GstElement * el, GstEbmlRead * ebml);
130 GstFlowReturn gst_matroska_read_common_parse_chapters (GstMatroskaReadCommon *
131     common, GstEbmlRead * ebml);
132 GstFlowReturn gst_matroska_read_common_parse_header (GstMatroskaReadCommon *
133     common, GstEbmlRead * ebml);
134 GstFlowReturn gst_matroska_read_common_parse_metadata (GstMatroskaReadCommon *
135     common, GstElement * el, GstEbmlRead * ebml);
136 GstFlowReturn gst_matroska_read_common_parse_skip (GstMatroskaReadCommon *
137     common, GstEbmlRead * ebml, const gchar * parent_name, guint id);
138 GstFlowReturn gst_matroska_read_common_peek_bytes (GstMatroskaReadCommon *
139     common, guint64 offset, guint size, GstBuffer ** p_buf, guint8 ** bytes);
140 GstFlowReturn gst_matroska_read_common_peek_id_length_pull (GstMatroskaReadCommon *
141     common, GstElement * el, guint32 * _id, guint64 * _length, guint *
142     _needed);
143 GstFlowReturn gst_matroska_read_common_peek_id_length_push (GstMatroskaReadCommon *
144     common, GstElement * el, guint32 * _id, guint64 * _length, guint *
145     _needed);
146 gint gst_matroska_read_common_stream_from_num (GstMatroskaReadCommon * common,
147     guint track_num);
148 GstFlowReturn gst_matroska_read_common_read_track_encodings (
149     GstMatroskaReadCommon * common, GstEbmlRead * ebml,
150     GstMatroskaTrackContext * context);
151 void gst_matroska_read_common_reset_streams (GstMatroskaReadCommon * common,
152     GstClockTime time, gboolean full);
153 void gst_matroska_read_common_free_parsed_el (gpointer mem, gpointer user_data);
154 void gst_matroska_read_common_init (GstMatroskaReadCommon * ctx);
155 void gst_matroska_read_common_finalize (GstMatroskaReadCommon * ctx);
156 void gst_matroska_read_common_reset (GstElement * element,
157     GstMatroskaReadCommon * ctx);
158 gboolean gst_matroska_read_common_tracknumber_unique (GstMatroskaReadCommon *
159     common, guint64 num);
160
161 G_END_DECLS
162
163 #endif /* __GST_MATROSKA_READ_COMMON_H__ */