forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaiff.c
358 lines (296 loc) · 10.7 KB
/
aiff.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/*****************************************************************************
* aiff.c: Audio Interchange File Format demuxer
*****************************************************************************
* Copyright (C) 2004-2007 VLC authors and VideoLAN
* $Id$
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_demux.h>
#include <limits.h>
/* TODO:
* - ...
*/
/*****************************************************************************
* Module descriptor
*****************************************************************************/
static int Open ( vlc_object_t * );
static void Close ( vlc_object_t * );
vlc_module_begin ()
set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_DEMUX )
set_description( N_("AIFF demuxer" ) )
set_capability( "demux", 10 )
set_callbacks( Open, Close )
add_shortcut( "aiff" )
vlc_module_end ()
/*****************************************************************************
* Local prototypes
*****************************************************************************/
struct demux_sys_t
{
es_format_t fmt;
es_out_id_t *es;
int64_t i_ssnd_pos;
int64_t i_ssnd_size;
int i_ssnd_offset;
int i_ssnd_blocksize;
/* real data start */
int64_t i_ssnd_start;
int64_t i_ssnd_end;
int i_ssnd_fsize;
int64_t i_time;
};
static int Demux ( demux_t *p_demux );
static int Control( demux_t *p_demux, int i_query, va_list args );
/* GetF80BE: read a 80 bits float in big endian */
static unsigned int GetF80BE( const uint8_t p[10] )
{
unsigned int i_mantissa = GetDWBE( &p[2] );
int i_exp = 30 - p[1];
unsigned int i_last = 0;
while( i_exp-- > 0 )
{
i_last = i_mantissa;
i_mantissa >>= 1;
}
if( i_last&0x01 )
{
i_mantissa++;
}
return i_mantissa;
}
/*****************************************************************************
* Open
*****************************************************************************/
static int Open( vlc_object_t *p_this )
{
demux_t *p_demux = (demux_t*)p_this;
demux_sys_t *p_sys;
const uint8_t *p_peek;
if( vlc_stream_Peek( p_demux->s, &p_peek, 12 ) < 12 )
return VLC_EGENERIC;
if( memcmp( p_peek, "FORM", 4 ) || memcmp( &p_peek[8], "AIFF", 4 ) )
return VLC_EGENERIC;
/* skip aiff header */
if( vlc_stream_Read( p_demux->s, NULL, 12 ) < 12 )
return VLC_EGENERIC;
/* Fill p_demux field */
DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
es_format_Init( &p_sys->fmt, AUDIO_ES, VLC_FOURCC( 't', 'w', 'o', 's' ) );
p_sys->i_time = 0;
p_sys->i_ssnd_pos = -1;
for( ;; )
{
if( vlc_stream_Peek( p_demux->s, &p_peek, 8 ) < 8 )
goto error;
uint32_t i_data_size = GetDWBE( &p_peek[4] );
uint64_t i_chunk_size = UINT64_C( 8 ) + i_data_size + ( i_data_size & 1 );
msg_Dbg( p_demux, "chunk fcc=%4.4s size=%" PRIu64 " data_size=%" PRIu32,
p_peek, i_chunk_size, i_data_size );
if( !memcmp( p_peek, "COMM", 4 ) )
{
if( vlc_stream_Peek( p_demux->s, &p_peek, 18+8 ) < 18+8 )
goto error;
p_sys->fmt.audio.i_channels = GetWBE( &p_peek[8] );
p_sys->fmt.audio.i_bitspersample = GetWBE( &p_peek[14] );
p_sys->fmt.audio.i_rate = GetF80BE( &p_peek[16] );
msg_Dbg( p_demux, "COMM: channels=%d samples_frames=%d bits=%d rate=%d",
GetWBE( &p_peek[8] ), GetDWBE( &p_peek[10] ), GetWBE( &p_peek[14] ),
GetF80BE( &p_peek[16] ) );
}
else if( !memcmp( p_peek, "SSND", 4 ) )
{
if( vlc_stream_Peek( p_demux->s, &p_peek, 8+8 ) < 8+8 )
goto error;
p_sys->i_ssnd_pos = vlc_stream_Tell( p_demux->s );
p_sys->i_ssnd_size = i_data_size;
p_sys->i_ssnd_offset = GetDWBE( &p_peek[8] );
p_sys->i_ssnd_blocksize = GetDWBE( &p_peek[12] );
msg_Dbg( p_demux, "SSND: (offset=%d blocksize=%d)",
p_sys->i_ssnd_offset, p_sys->i_ssnd_blocksize );
}
if( p_sys->i_ssnd_pos >= 12 && p_sys->fmt.audio.i_channels != 0 )
{
/* We have found the 2 needed chunks */
break;
}
/* consume chunk data */
for( ssize_t i_req; i_chunk_size; i_chunk_size -= i_req )
{
#if SSIZE_MAX < UINT64_MAX
i_req = __MIN( SSIZE_MAX, i_chunk_size );
#else
i_req = i_chunk_size;
#endif
if( vlc_stream_Read( p_demux->s, NULL, i_req ) != i_req )
{
msg_Warn( p_demux, "incomplete file" );
goto error;
}
}
}
p_sys->i_ssnd_start = p_sys->i_ssnd_pos + 16 + p_sys->i_ssnd_offset;
p_sys->i_ssnd_end = p_sys->i_ssnd_start + p_sys->i_ssnd_size;
p_sys->i_ssnd_fsize = p_sys->fmt.audio.i_channels *
((p_sys->fmt.audio.i_bitspersample + 7) / 8);
if( p_sys->i_ssnd_fsize <= 0 || p_sys->fmt.audio.i_rate == 0 )
{
msg_Err( p_demux, "invalid audio parameters" );
goto error;
}
if( p_sys->i_ssnd_size <= 0 )
{
/* unknown */
p_sys->i_ssnd_end = 0;
}
/* seek into SSND chunk */
if( vlc_stream_Seek( p_demux->s, p_sys->i_ssnd_start ) )
{
msg_Err( p_demux, "cannot seek to data chunk" );
goto error;
}
/* */
p_sys->es = es_out_Add( p_demux->out, &p_sys->fmt );
return VLC_SUCCESS;
error:
free( p_sys );
return VLC_EGENERIC;
}
/*****************************************************************************
* Close
*****************************************************************************/
static void Close( vlc_object_t *p_this )
{
demux_t *p_demux = (demux_t*)p_this;
demux_sys_t *p_sys = p_demux->p_sys;
free( p_sys );
}
/*****************************************************************************
* Demux:
*****************************************************************************/
static int Demux( demux_t *p_demux )
{
demux_sys_t *p_sys = p_demux->p_sys;
int64_t i_tell = vlc_stream_Tell( p_demux->s );
block_t *p_block;
int i_read;
if( p_sys->i_ssnd_end > 0 && i_tell >= p_sys->i_ssnd_end )
{
/* EOF */
return 0;
}
/* Set PCR */
es_out_SetPCR( p_demux->out, VLC_TS_0 + p_sys->i_time);
/* we will read 100ms at once */
i_read = p_sys->i_ssnd_fsize * ( p_sys->fmt.audio.i_rate / 10 );
if( p_sys->i_ssnd_end > 0 && p_sys->i_ssnd_end - i_tell < i_read )
{
i_read = p_sys->i_ssnd_end - i_tell;
}
if( ( p_block = vlc_stream_Block( p_demux->s, i_read ) ) == NULL )
{
return 0;
}
p_block->i_dts =
p_block->i_pts = VLC_TS_0 + p_sys->i_time;
p_sys->i_time += (int64_t)1000000 *
p_block->i_buffer /
p_sys->i_ssnd_fsize /
p_sys->fmt.audio.i_rate;
/* */
es_out_Send( p_demux->out, p_sys->es, p_block );
return 1;
}
/*****************************************************************************
* Control:
*****************************************************************************/
static int Control( demux_t *p_demux, int i_query, va_list args )
{
demux_sys_t *p_sys = p_demux->p_sys;
double f, *pf;
int64_t *pi64;
switch( i_query )
{
case DEMUX_CAN_SEEK:
return vlc_stream_vaControl( p_demux->s, i_query, args );
case DEMUX_GET_POSITION:
{
int64_t i_start = p_sys->i_ssnd_start;
int64_t i_end = p_sys->i_ssnd_end > 0 ? p_sys->i_ssnd_end : stream_Size( p_demux->s );
int64_t i_tell = vlc_stream_Tell( p_demux->s );
pf = va_arg( args, double * );
if( i_start < i_end )
{
*pf = (double)(i_tell - i_start)/(double)(i_end - i_start);
return VLC_SUCCESS;
}
return VLC_EGENERIC;
}
case DEMUX_SET_POSITION:
{
int64_t i_start = p_sys->i_ssnd_start;
int64_t i_end = p_sys->i_ssnd_end > 0 ? p_sys->i_ssnd_end : stream_Size( p_demux->s );
f = va_arg( args, double );
if( i_start < i_end )
{
int i_frame = (f * ( i_end - i_start )) / p_sys->i_ssnd_fsize;
int64_t i_new = i_start + i_frame * p_sys->i_ssnd_fsize;
if( vlc_stream_Seek( p_demux->s, i_new ) )
{
return VLC_EGENERIC;
}
p_sys->i_time = (int64_t)1000000 * i_frame / p_sys->fmt.audio.i_rate;
return VLC_SUCCESS;
}
return VLC_EGENERIC;
}
case DEMUX_GET_TIME:
pi64 = va_arg( args, int64_t * );
*pi64 = p_sys->i_time;
return VLC_SUCCESS;
case DEMUX_GET_LENGTH:
{
int64_t i_end = p_sys->i_ssnd_end > 0 ? p_sys->i_ssnd_end : stream_Size( p_demux->s );
pi64 = va_arg( args, int64_t * );
if( p_sys->i_ssnd_start < i_end )
{
*pi64 = (int64_t)1000000 * ( i_end - p_sys->i_ssnd_start ) / p_sys->i_ssnd_fsize / p_sys->fmt.audio.i_rate;
return VLC_SUCCESS;
}
return VLC_EGENERIC;
}
case DEMUX_SET_TIME:
case DEMUX_GET_FPS:
return VLC_EGENERIC;
case DEMUX_CAN_PAUSE:
case DEMUX_SET_PAUSE_STATE:
case DEMUX_CAN_CONTROL_PACE:
case DEMUX_GET_PTS_DELAY:
return demux_vaControlHelper( p_demux->s, 0, -1, 0, 1, i_query, args );
default:
return VLC_EGENERIC;
}
}