]> git.sesse.net Git - vlc/blob - modules/demux/mkv/mkv.hpp
MKV wants to include libintl.h
[vlc] / modules / demux / mkv / mkv.hpp
1 /*****************************************************************************
2  * mkv.cpp : matroska demuxer
3  *****************************************************************************
4  * Copyright (C) 2003-2004 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
38 #ifdef HAVE_CONFIG_H
39 # include "config.h"
40 #endif
41 #undef gettext
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
53 #include <vlc_codecs.h>               /* BITMAPINFOHEADER, WAVEFORMATEX */
54 #include <vlc_iso_lang.h>
55 #include "vlc_meta.h"
56 #include <vlc_charset.h>
57 #include <vlc_input.h>
58 #include <vlc_demux.h>
59
60 #include <iostream>
61 #include <cassert>
62 #include <typeinfo>
63 #include <string>
64 #include <vector>
65 #include <algorithm>
66
67 #ifdef HAVE_DIRENT_H
68 #   include <dirent.h>
69 #endif
70
71 /* libebml and matroska */
72 #include "ebml/EbmlHead.h"
73 #include "ebml/EbmlSubHead.h"
74 #include "ebml/EbmlStream.h"
75 #include "ebml/EbmlContexts.h"
76 #include "ebml/EbmlVoid.h"
77 #include "ebml/EbmlVersion.h"
78 #include "ebml/StdIOCallback.h"
79
80 #include "matroska/KaxAttachments.h"
81 #include "matroska/KaxAttached.h"
82 #include "matroska/KaxBlock.h"
83 #include "matroska/KaxBlockData.h"
84 #include "matroska/KaxChapters.h"
85 #include "matroska/KaxCluster.h"
86 #include "matroska/KaxClusterData.h"
87 #include "matroska/KaxContexts.h"
88 #include "matroska/KaxCues.h"
89 #include "matroska/KaxCuesData.h"
90 #include "matroska/KaxInfo.h"
91 #include "matroska/KaxInfoData.h"
92 #include "matroska/KaxSeekHead.h"
93 #include "matroska/KaxSegment.h"
94 #include "matroska/KaxTag.h"
95 #include "matroska/KaxTags.h"
96 #include "matroska/KaxTagMulti.h"
97 #include "matroska/KaxTracks.h"
98 #include "matroska/KaxTrackAudio.h"
99 #include "matroska/KaxTrackVideo.h"
100 #include "matroska/KaxTrackEntryData.h"
101 #include "matroska/KaxContentEncoding.h"
102 #include "matroska/KaxVersion.h"
103
104 #include "ebml/StdIOCallback.h"
105
106 #include "vlc_keys.h"
107
108 extern "C" {
109    #include "../mp4/libmp4.h"
110 }
111 #ifdef HAVE_ZLIB_H
112 #   include <zlib.h>
113 #endif
114
115 #define MATROSKA_COMPRESSION_NONE  -1
116 #define MATROSKA_COMPRESSION_ZLIB   0
117 #define MATROSKA_COMPRESSION_BLIB   1
118 #define MATROSKA_COMPRESSION_LZOX   2
119 #define MATROSKA_COMPRESSION_HEADER 3
120
121 #define MKVD_TIMECODESCALE 1000000
122
123 /**
124  * What's between a directory and a filename?
125  */
126 #if defined( WIN32 )
127     #define DIRECTORY_SEPARATOR '\\'
128 #else
129     #define DIRECTORY_SEPARATOR '/'
130 #endif
131
132
133 #define MKV_IS_ID( el, C ) ( EbmlId( (*el) ) == C::ClassInfos.GlobalId )
134
135
136 using namespace LIBMATROSKA_NAMESPACE;
137 using namespace std;
138
139 class attachment_c
140 {
141 public:
142     attachment_c()
143         :p_data(NULL)
144         ,i_size(0)
145     {}
146     virtual ~attachment_c()
147     {
148         free( p_data );
149     }
150
151     std::string    psz_file_name;
152     std::string    psz_mime_type;
153     void          *p_data;
154     int            i_size;
155 };
156
157 class matroska_segment_c;
158
159 class matroska_stream_c
160 {
161 public:
162     matroska_stream_c( demux_sys_t & demuxer )
163         :p_in(NULL)
164         ,p_es(NULL)
165         ,sys(demuxer)
166     {}
167
168     virtual ~matroska_stream_c()
169     {
170         delete p_in;
171         delete p_es;
172     }
173
174     IOCallback         *p_in;
175     EbmlStream         *p_es;
176
177     std::vector<matroska_segment_c*> segments;
178
179     demux_sys_t                      & sys;
180 };
181
182
183 /*****************************************************************************
184  * definitions of structures and functions used by this plugins
185  *****************************************************************************/
186 typedef struct
187 {
188 //    ~mkv_track_t();
189
190     bool         b_default;
191     bool         b_enabled;
192     unsigned int i_number;
193
194     int          i_extra_data;
195     uint8_t      *p_extra_data;
196
197     char         *psz_codec;
198     bool         b_dts_only;
199
200     uint64_t     i_default_duration;
201     float        f_timecodescale;
202     mtime_t      i_last_dts;
203
204     /* video */
205     es_format_t fmt;
206     float       f_fps;
207     es_out_id_t *p_es;
208
209     /* audio */
210     unsigned int i_original_rate;
211
212     bool            b_inited;
213     /* data to be send first */
214     int             i_data_init;
215     uint8_t         *p_data_init;
216
217     /* hack : it's for seek */
218     bool            b_search_keyframe;
219     bool            b_silent;
220
221     /* informative */
222     const char   *psz_codec_name;
223     const char   *psz_codec_settings;
224     const char   *psz_codec_info_url;
225     const char   *psz_codec_download_url;
226
227     /* encryption/compression */
228     int                    i_compression_type;
229     KaxContentCompSettings *p_compression_data;
230
231 } mkv_track_t;
232
233 typedef struct
234 {
235     int     i_track;
236     int     i_block_number;
237
238     int64_t i_position;
239     int64_t i_time;
240
241     bool       b_key;
242 } mkv_index_t;
243
244
245 #endif /* _MKV_HPP_ */