1 /*****************************************************************************
2 * mkv.cpp : matroska demuxer
3 *****************************************************************************
4 * Copyright (C) 2003-2004 the VideoLAN team
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8 * Steve Lhomme <steve.lhomme@free.fr>
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.
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.
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 *****************************************************************************/
28 /*****************************************************************************
30 *****************************************************************************/
33 /* config.h may include inttypes.h, so make sure we define that option
35 #define __STDC_FORMAT_MACROS 1
36 #define __STDC_CONSTANT_MACROS 1
44 #include <vlc_common.h>
45 #include <vlc_plugin.h>
48 # include <time.h> /* time() */
52 #include <vlc_codecs.h> /* BITMAPINFOHEADER, WAVEFORMATEX */
53 #include <vlc_iso_lang.h>
55 #include <vlc_charset.h>
56 #include <vlc_input.h>
57 #include <vlc_demux.h>
70 /* libebml and matroska */
71 #include "ebml/EbmlHead.h"
72 #include "ebml/EbmlSubHead.h"
73 #include "ebml/EbmlStream.h"
74 #include "ebml/EbmlContexts.h"
75 #include "ebml/EbmlVoid.h"
76 #include "ebml/EbmlVersion.h"
77 #include "ebml/StdIOCallback.h"
79 #include "matroska/KaxAttachments.h"
80 #include "matroska/KaxAttached.h"
81 #include "matroska/KaxBlock.h"
82 #include "matroska/KaxBlockData.h"
83 #include "matroska/KaxChapters.h"
84 #include "matroska/KaxCluster.h"
85 #include "matroska/KaxClusterData.h"
86 #include "matroska/KaxContexts.h"
87 #include "matroska/KaxCues.h"
88 #include "matroska/KaxCuesData.h"
89 #include "matroska/KaxInfo.h"
90 #include "matroska/KaxInfoData.h"
91 #include "matroska/KaxSeekHead.h"
92 #include "matroska/KaxSegment.h"
93 #include "matroska/KaxTag.h"
94 #include "matroska/KaxTags.h"
95 #include "matroska/KaxTagMulti.h"
96 #include "matroska/KaxTracks.h"
97 #include "matroska/KaxTrackAudio.h"
98 #include "matroska/KaxTrackVideo.h"
99 #include "matroska/KaxTrackEntryData.h"
100 #include "matroska/KaxContentEncoding.h"
101 #include "matroska/KaxVersion.h"
103 #include "ebml/StdIOCallback.h"
105 #include <vlc_keys.h>
108 #include "../mp4/libmp4.h"
114 #define MATROSKA_COMPRESSION_NONE -1
115 #define MATROSKA_COMPRESSION_ZLIB 0
116 #define MATROSKA_COMPRESSION_BLIB 1
117 #define MATROSKA_COMPRESSION_LZOX 2
118 #define MATROSKA_COMPRESSION_HEADER 3
120 #define MKVD_TIMECODESCALE 1000000
122 #define MKV_IS_ID( el, C ) ( EbmlId( (*el) ) == C::ClassInfos.GlobalId )
125 using namespace LIBMATROSKA_NAMESPACE;
135 virtual ~attachment_c()
140 std::string psz_file_name;
141 std::string psz_mime_type;
146 class matroska_segment_c;
148 class matroska_stream_c
151 matroska_stream_c( demux_sys_t & demuxer )
157 virtual ~matroska_stream_c()
166 std::vector<matroska_segment_c*> segments;
172 /*****************************************************************************
173 * definitions of structures and functions used by this plugins
174 *****************************************************************************/
181 unsigned int i_number;
184 uint8_t *p_extra_data;
189 uint64_t i_default_duration;
190 float f_timecodescale;
199 unsigned int i_original_rate;
202 /* data to be send first */
204 uint8_t *p_data_init;
206 /* hack : it's for seek */
207 bool b_search_keyframe;
211 const char *psz_codec_name;
212 const char *psz_codec_settings;
213 const char *psz_codec_info_url;
214 const char *psz_codec_download_url;
216 /* encryption/compression */
217 int i_compression_type;
218 KaxContentCompSettings *p_compression_data;
234 #endif /* _MKV_HPP_ */