]> git.sesse.net Git - vlc/blob - modules/demux/mkv/mkv.hpp
296ef1316bbe4c6a7114aeab8d1a2e70b31f270e
[vlc] / modules / demux / mkv / mkv.hpp
1 /*****************************************************************************
2  * mkv.cpp : matroska demuxer
3  *****************************************************************************
4  * Copyright (C) 2003-2005, 2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Steve Lhomme <steve.lhomme@free.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef _MKV_H_
26 #define _MKV_H_
27
28 /*****************************************************************************
29  * Preamble
30  *****************************************************************************/
31
32
33 /* config.h may include inttypes.h, so make sure we define that option
34  * early enough. */
35 #define __STDC_FORMAT_MACROS 1
36 #define __STDC_CONSTANT_MACROS 1
37 #define __STDC_LIMIT_MACROS 1
38
39 #ifdef HAVE_CONFIG_H
40 # include "config.h"
41 #endif
42
43 #include <inttypes.h>
44
45 #include <vlc_common.h>
46 #include <vlc_plugin.h>
47
48 #ifdef HAVE_TIME_H
49 #   include <time.h>                                               /* time() */
50 #endif
51
52 #include <vlc_iso_lang.h>
53 #include <vlc_meta.h>
54 #include <vlc_charset.h>
55 #include <vlc_input.h>
56 #include <vlc_demux.h>
57
58 #include <iostream>
59 #include <cassert>
60 #include <typeinfo>
61 #include <string>
62 #include <vector>
63 #include <algorithm>
64
65 /* libebml and matroska */
66 #include "ebml/EbmlHead.h"
67 #include "ebml/EbmlSubHead.h"
68 #include "ebml/EbmlStream.h"
69 #include "ebml/EbmlContexts.h"
70 #include "ebml/EbmlVoid.h"
71 #include "ebml/EbmlVersion.h"
72 #include "ebml/StdIOCallback.h"
73
74 #include "matroska/KaxAttachments.h"
75 #include "matroska/KaxAttached.h"
76 #include "matroska/KaxBlock.h"
77 #include "matroska/KaxBlockData.h"
78 #include "matroska/KaxChapters.h"
79 #include "matroska/KaxCluster.h"
80 #include "matroska/KaxClusterData.h"
81 #include "matroska/KaxContexts.h"
82 #include "matroska/KaxCues.h"
83 #include "matroska/KaxCuesData.h"
84 #include "matroska/KaxInfo.h"
85 #include "matroska/KaxInfoData.h"
86 #include "matroska/KaxSeekHead.h"
87 #include "matroska/KaxSegment.h"
88 #include "matroska/KaxTag.h"
89 #include "matroska/KaxTags.h"
90 #include "matroska/KaxTagMulti.h"
91 #include "matroska/KaxTracks.h"
92 #include "matroska/KaxTrackAudio.h"
93 #include "matroska/KaxTrackVideo.h"
94 #include "matroska/KaxTrackEntryData.h"
95 #include "matroska/KaxContentEncoding.h"
96 #include "matroska/KaxVersion.h"
97
98 #include "ebml/StdIOCallback.h"
99
100 #include <vlc_keys.h>
101
102 extern "C" {
103    #include "../mp4/libmp4.h"
104 }
105 #ifdef HAVE_ZLIB_H
106 #   include <zlib.h>
107 #endif
108
109 #define MKV_DEBUG 0
110
111 #define MATROSKA_COMPRESSION_NONE  -1
112 #define MATROSKA_COMPRESSION_ZLIB   0
113 #define MATROSKA_COMPRESSION_BLIB   1
114 #define MATROSKA_COMPRESSION_LZOX   2
115 #define MATROSKA_COMPRESSION_HEADER 3
116
117 #define MKVD_TIMECODESCALE 1000000
118
119 #define MKV_IS_ID( el, C ) ( EbmlId( (*el) ) == C::ClassInfos.GlobalId )
120
121
122 using namespace LIBMATROSKA_NAMESPACE;
123 using namespace std;
124
125 void BlockDecode( demux_t *p_demux, KaxBlock *block, KaxSimpleBlock *simpleblock,
126                          mtime_t i_pts, mtime_t i_duration, bool f_mandatory );
127
128 class attachment_c
129 {
130 public:
131     attachment_c()
132         :p_data(NULL)
133         ,i_size(0)
134     {}
135     virtual ~attachment_c()
136     {
137         free( p_data );
138     }
139
140     std::string    psz_file_name;
141     std::string    psz_mime_type;
142     void          *p_data;
143     int            i_size;
144 };
145
146 class matroska_segment_c;
147
148 class matroska_stream_c
149 {
150 public:
151     matroska_stream_c( demux_sys_t & demuxer )
152         :p_in(NULL)
153         ,p_es(NULL)
154         ,sys(demuxer)
155     {}
156
157     virtual ~matroska_stream_c()
158     {
159         delete p_in;
160         delete p_es;
161     }
162
163     IOCallback         *p_in;
164     EbmlStream         *p_es;
165
166     std::vector<matroska_segment_c*> segments;
167
168     demux_sys_t                      & sys;
169 };
170
171
172 /*****************************************************************************
173  * definitions of structures and functions used by this plugins
174  *****************************************************************************/
175 typedef struct
176 {
177 //    ~mkv_track_t();
178
179     bool         b_default;
180     bool         b_enabled;
181     unsigned int i_number;
182
183     int          i_extra_data;
184     uint8_t      *p_extra_data;
185
186     char         *psz_codec;
187     bool         b_dts_only;
188     bool         b_pts_only;
189
190     uint64_t     i_default_duration;
191     float        f_timecodescale;
192     mtime_t      i_last_dts;
193
194     /* video */
195     es_format_t fmt;
196     float       f_fps;
197     es_out_id_t *p_es;
198
199     /* audio */
200     unsigned int i_original_rate;
201
202     bool            b_inited;
203     /* data to be send first */
204     int             i_data_init;
205     uint8_t         *p_data_init;
206
207     /* hack : it's for seek */
208     bool            b_search_keyframe;
209     bool            b_silent;
210
211     /* informative */
212     const char   *psz_codec_name;
213     const char   *psz_codec_settings;
214     const char   *psz_codec_info_url;
215     const char   *psz_codec_download_url;
216
217     /* encryption/compression */
218     int                    i_compression_type;
219     KaxContentCompSettings *p_compression_data;
220
221 } mkv_track_t;
222
223 typedef struct
224 {
225     int     i_track;
226     int     i_block_number;
227
228     int64_t i_position;
229     int64_t i_time;
230
231     bool       b_key;
232 } mkv_index_t;
233
234
235 #endif /* _MKV_HPP_ */