]> git.sesse.net Git - vlc/blob - modules/demux/mkv/util.hpp
LGPL
[vlc] / modules / demux / mkv / util.hpp
1
2 /*****************************************************************************
3  * mkv.cpp : matroska demuxer
4  *****************************************************************************
5  * Copyright (C) 2003-2004 VLC authors and VideoLAN
6  * $Id$
7  *
8  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9  *          Steve Lhomme <steve.lhomme@free.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify it
12  * under the terms of the GNU Lesser General Public License as published by
13  * the Free Software Foundation; either version 2.1 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * along with this program; if not, write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #include "mkv.hpp"
27
28 block_t *block_zlib_decompress( vlc_object_t *p_this, block_t *p_in_block );
29
30 block_t *MemToBlock( uint8_t *p_mem, size_t i_mem, size_t offset);
31 void handle_real_audio(demux_t * p_demux, mkv_track_t * p_tk, block_t * p_blk, mtime_t i_pts);
32
33
34 struct real_audio_private
35 {
36     uint32_t fourcc;
37     uint16_t version;
38     uint16_t unknown1;
39     uint8_t  unknown2[12];
40     uint16_t unknown3;
41     uint16_t flavor;
42     uint32_t coded_frame_size;
43     uint32_t unknown4[3];
44     uint16_t sub_packet_h;
45     uint16_t frame_size;
46     uint16_t sub_packet_size;
47     uint16_t unknown5;
48 };
49
50 struct real_audio_private_v4
51 {
52     real_audio_private header;
53     uint16_t sample_rate;
54     uint16_t unknown;
55     uint16_t sample_size;
56     uint16_t channels;
57 };
58
59
60 struct real_audio_private_v5
61 {
62     real_audio_private header;
63     uint32_t unknown1;
64     uint16_t unknown2;
65     uint16_t sample_rate;
66     uint16_t unknown3;
67     uint16_t sample_size;
68     uint16_t channels;
69 };
70
71 class Cook_PrivateTrackData : public PrivateTrackData
72 {
73 public:
74     Cook_PrivateTrackData(uint16_t sph, uint16_t fs, uint16_t sps):
75         i_sub_packet_h(sph), i_frame_size(fs), i_subpacket_size(sps),
76         p_subpackets(NULL), i_subpackets(0), i_subpacket(0){}
77     ~Cook_PrivateTrackData();
78     int32_t Init();
79
80     uint16_t i_sub_packet_h;
81     uint16_t i_frame_size;
82     uint16_t i_subpacket_size;
83     block_t  **p_subpackets;
84     size_t   i_subpackets;
85     size_t   i_subpacket;
86 };