1 /*****************************************************************************
2 * voc.c : Creative Voice File (.VOC) demux module for vlc
3 *****************************************************************************
4 * Copyright (C) 2005 Rémi Denis-Courmont
7 * Authors: Rémi Denis-Courmont <rem # videolan.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
26 *****************************************************************************/
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_demux.h>
37 /*****************************************************************************
39 *****************************************************************************/
40 static int Open ( vlc_object_t * );
41 static void Close( vlc_object_t * );
44 set_description( N_("VOC demuxer") )
45 set_category( CAT_INPUT )
46 set_subcategory( SUBCAT_INPUT_DEMUX )
47 set_capability( "demux", 10 )
48 set_callbacks( Open, Close )
51 /*****************************************************************************
53 *****************************************************************************/
54 static int Demux ( demux_t * );
55 static int Control( demux_t *, int i_query, va_list args );
62 int64_t i_block_start;
65 int64_t i_loop_offset;
66 unsigned i_loop_count;
67 unsigned i_silence_countdown;
72 static const char ct_header[] = "Creative Voice File\x1a";
74 /*****************************************************************************
75 * Open: check file and initializes structures
76 *****************************************************************************/
77 static int Open( vlc_object_t * p_this )
79 demux_t *p_demux = (demux_t*)p_this;
82 uint16_t i_data_offset, i_version;
84 if( stream_Peek( p_demux->s, &p_buf, 26 ) < 26 )
87 if( memcmp( p_buf, ct_header, 20 ) )
91 i_data_offset = GetWLE( p_buf );
92 if ( i_data_offset < 26 /* not enough room for full VOC header */ )
96 i_version = GetWLE( p_buf );
97 if( ( i_version != 0x10A ) && ( i_version != 0x114 ) )
98 return VLC_EGENERIC; /* unknown VOC version */
101 if( GetWLE( p_buf ) != (uint16_t)(0x1234 + ~i_version) )
104 /* We have a valid VOC header */
105 msg_Dbg( p_demux, "CT Voice file v%d.%d", i_version >> 8,
108 /* skip VOC header */
109 if( stream_Read( p_demux->s, NULL, i_data_offset ) < i_data_offset )
112 p_demux->pf_demux = Demux;
113 p_demux->pf_control = Control;
114 p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
118 p_sys->i_silence_countdown = p_sys->i_block_start = p_sys->i_block_end =
119 p_sys->i_loop_count = 0;
122 date_Init( &p_sys->pts, 1, 1 );
123 date_Set( &p_sys->pts, 1 );
125 es_format_Init( &p_sys->fmt, AUDIO_ES, 0 );
131 static int fmtcmp( es_format_t *ofmt, es_format_t *nfmt )
133 return (ofmt->audio.i_bitspersample != nfmt->audio.i_bitspersample)
134 || (ofmt->audio.i_rate != nfmt->audio.i_rate)
135 || (ofmt->audio.i_channels != nfmt->audio.i_channels);
140 * Converts old-style VOC sample rates to commonly used ones
141 * so as not to confuse sound card drivers.
142 * (I assume 16k, 24k and 32k are never found in .VOC files)
144 static unsigned int fix_voc_sr( unsigned int sr )
162 static int ReadBlockHeader( demux_t *p_demux )
166 int32_t i_block_size;
167 demux_sys_t *p_sys = p_demux->p_sys;
169 if( stream_Read( p_demux->s, buf, 4 ) < 4 )
170 return VLC_EGENERIC; /* EOF */
172 i_block_size = GetDWLE( buf ) >> 8;
173 msg_Dbg( p_demux, "new block: type: %u, size: %u",
174 (unsigned)*buf, i_block_size );
176 es_format_Init( &new_fmt, AUDIO_ES, 0 );
180 case 0: /* not possible : caught with earlier stream_Read */
184 if( i_block_size < 2 )
188 if( stream_Read( p_demux->s, buf, 2 ) < 2 )
193 msg_Err( p_demux, "unsupported compression" );
197 new_fmt.i_codec = VLC_CODEC_U8;
198 new_fmt.audio.i_rate = fix_voc_sr( 1000000L / (256L - buf[0]) );
199 new_fmt.audio.i_bytes_per_frame = 1;
200 new_fmt.audio.i_frame_length = 1;
201 new_fmt.audio.i_channels = 1;
202 new_fmt.audio.i_blockalign = 1;
203 new_fmt.audio.i_bitspersample = 8;
204 new_fmt.i_bitrate = new_fmt.audio.i_rate * 8;
207 case 2: /* data block with same format as the previous one */
208 if( p_sys->p_es == NULL )
209 goto corrupt; /* no previous block! */
211 memcpy( &new_fmt, &p_sys->fmt, sizeof( new_fmt ) );
214 case 3: /* silence block */
215 if( ( i_block_size != 3 )
216 || ( stream_Read( p_demux->s, buf, 3 ) < 3 ) )
220 p_sys->i_silence_countdown = GetWLE( buf );
222 new_fmt.i_codec = VLC_CODEC_U8;
223 new_fmt.audio.i_rate = fix_voc_sr( 1000000L / (256L - buf[0]) );
224 new_fmt.audio.i_bytes_per_frame = 1;
225 new_fmt.audio.i_frame_length = 1;
226 new_fmt.audio.i_channels = 1;
227 new_fmt.audio.i_blockalign = 1;
228 new_fmt.audio.i_bitspersample = 8;
229 new_fmt.i_bitrate = new_fmt.audio.i_rate * 8;
232 case 6: /* repeat block */
233 if( ( i_block_size != 2 )
234 || ( stream_Read( p_demux->s, buf, 2 ) < 2 ) )
238 p_sys->i_loop_count = GetWLE( buf );
239 p_sys->i_loop_offset = stream_Tell( p_demux->s );
242 case 7: /* repeat end block */
243 if( i_block_size != 0 )
246 if( p_sys->i_loop_count > 0 )
248 if( stream_Seek( p_demux->s, p_sys->i_loop_offset ) )
249 msg_Warn( p_demux, "cannot loop: seek failed" );
251 p_sys->i_loop_count--;
257 * Block 8 is a big kludge to add stereo support to block 1 :
258 * A block of type 8 is always followed by a block of type 1
259 * and specifies the number of channels in that 1-block
260 * (normally block 1 are always mono). In practice, block type 9
261 * is used for stereo rather than 8
263 if( ( i_block_size != 4 )
264 || ( stream_Read( p_demux->s, buf, 4 ) < 4 ) )
269 msg_Err( p_demux, "unsupported compression" );
273 new_fmt.i_codec = VLC_CODEC_U8;
274 new_fmt.audio.i_channels = buf[3] + 1; /* can't be nul */
275 new_fmt.audio.i_rate = 256000000L /
276 ((65536L - GetWLE(buf)) * new_fmt.audio.i_channels);
277 new_fmt.audio.i_bytes_per_frame = new_fmt.audio.i_channels;
278 new_fmt.audio.i_frame_length = 1;
279 new_fmt.audio.i_blockalign = new_fmt.audio.i_bytes_per_frame;
280 new_fmt.audio.i_bitspersample = 8 * new_fmt.audio.i_bytes_per_frame;
281 new_fmt.i_bitrate = new_fmt.audio.i_rate * 8;
283 /* read subsequent block 1 */
284 if( stream_Read( p_demux->s, buf, 4 ) < 4 )
285 return VLC_EGENERIC; /* EOF */
287 i_block_size = GetDWLE( buf ) >> 8;
288 msg_Dbg( p_demux, "new block: type: %u, size: %u",
289 (unsigned)*buf, i_block_size );
290 if( i_block_size < 2 )
294 if( stream_Read( p_demux->s, buf, 2 ) < 2 )
299 msg_Err( p_demux, "unsupported compression" );
305 case 9: /* newer data block with channel number and bits resolution */
306 if( i_block_size < 12 )
310 if( ( stream_Read( p_demux->s, buf, 8 ) < 8 )
311 || ( stream_Read( p_demux->s, NULL, 4 ) < 4 ) )
314 new_fmt.audio.i_rate = GetDWLE( buf );
315 new_fmt.audio.i_bitspersample = buf[4];
316 new_fmt.audio.i_channels = buf[5];
318 switch( GetWLE( &buf[6] ) ) /* format */
320 case 0x0000: /* PCM */
321 switch( new_fmt.audio.i_bitspersample )
324 new_fmt.i_codec = VLC_CODEC_U8;
328 new_fmt.i_codec = VLC_CODEC_U16L;
332 msg_Err( p_demux, "unsupported bit res.: %u bits",
333 new_fmt.audio.i_bitspersample );
338 case 0x0004: /* signed */
339 switch( new_fmt.audio.i_bitspersample )
342 new_fmt.i_codec = VLC_CODEC_S8;
346 new_fmt.i_codec = VLC_CODEC_S16L;
350 msg_Err( p_demux, "unsupported bit res.: %u bits",
351 new_fmt.audio.i_bitspersample );
357 msg_Err( p_demux, "unsupported compression" );
361 new_fmt.audio.i_bytes_per_frame = new_fmt.audio.i_channels
362 * (new_fmt.audio.i_bitspersample / 8);
363 new_fmt.audio.i_frame_length = 1;
364 new_fmt.audio.i_blockalign = new_fmt.audio.i_bytes_per_frame;
365 new_fmt.i_bitrate = 8 * new_fmt.audio.i_rate
366 * new_fmt.audio.i_bytes_per_frame;
370 msg_Dbg( p_demux, "unknown block type %u - skipping block",
372 case 4: /* blocks of non-audio types can be skipped */
374 if( stream_Read( p_demux->s, NULL, i_block_size ) < i_block_size )
380 p_sys->i_block_start = stream_Tell( p_demux->s );
381 p_sys->i_block_end = p_sys->i_block_start + i_block_size;
383 if( i_block_size || p_sys->i_silence_countdown )
385 /* we've read a block with data in it - update decoder */
386 msg_Dbg( p_demux, "fourcc: %4.4s, channels: %d, "
387 "freq: %d Hz, bitrate: %dKo/s, blockalign: %d, "
388 "bits/samples: %d", (char *)&new_fmt.i_codec,
389 new_fmt.audio.i_channels, new_fmt.audio.i_rate,
390 new_fmt.i_bitrate / 8192, new_fmt.audio.i_blockalign,
391 new_fmt.audio.i_bitspersample );
393 if( ( p_sys->p_es != NULL ) && fmtcmp( &p_sys->fmt, &new_fmt ) )
395 msg_Dbg( p_demux, "codec change needed" );
396 es_out_Del( p_demux->out, p_sys->p_es );
400 if( p_sys->p_es == NULL )
402 memcpy( &p_sys->fmt, &new_fmt, sizeof( p_sys->fmt ) );
403 date_Change( &p_sys->pts, p_sys->fmt.audio.i_rate, 1 );
404 p_sys->p_es = es_out_Add( p_demux->out, &p_sys->fmt );
411 msg_Err( p_demux, "corrupted file - halting demux" );
415 /*****************************************************************************
416 * Demux: read packet and send them to decoders
417 *****************************************************************************
418 * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
419 *****************************************************************************/
420 #define SAMPLES_BUFFER 1000
421 static int Demux( demux_t *p_demux )
423 demux_sys_t *p_sys = p_demux->p_sys;
427 i_offset = stream_Tell( p_demux->s );
429 while( ( i_offset >= p_sys->i_block_end )
430 && ( p_sys->i_silence_countdown == 0 ) )
431 if( ReadBlockHeader( p_demux ) != VLC_SUCCESS )
434 if( p_sys->i_silence_countdown == 0 )
436 i = ( p_sys->i_block_end - i_offset )
437 / p_sys->fmt.audio.i_bytes_per_frame;
438 if( i > SAMPLES_BUFFER )
441 p_block = stream_Block( p_demux->s,
442 p_sys->fmt.audio.i_bytes_per_frame * i );
443 if( p_block == NULL )
445 msg_Warn( p_demux, "cannot read data" );
450 { /* emulates silence from the stream */
451 i = p_sys->i_silence_countdown;
452 if( i > SAMPLES_BUFFER )
455 p_block = block_New( p_demux, i );
456 if( p_block == NULL )
459 memset( p_block->p_buffer, 0, i );
460 p_sys->i_silence_countdown -= i;
463 p_block->i_dts = p_block->i_pts = VLC_TS_0 + date_Get( &p_sys->pts );
465 es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
467 es_out_Send( p_demux->out, p_sys->p_es, p_block );
469 date_Increment( &p_sys->pts, p_sys->fmt.audio.i_frame_length * i );
474 /*****************************************************************************
475 * Close: frees unused data
476 *****************************************************************************/
477 static void Close ( vlc_object_t * p_this )
479 demux_sys_t *p_sys = ((demux_t *)p_this)->p_sys;
484 /*****************************************************************************
486 *****************************************************************************/
487 static int Control( demux_t *p_demux, int i_query, va_list args )
489 demux_sys_t *p_sys = p_demux->p_sys;
491 return demux_vaControlHelper( p_demux->s, p_sys->i_block_start,
493 p_sys->fmt.i_bitrate,
494 p_sys->fmt.audio.i_blockalign,