X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fdemux%2Fdts.c;h=914c77b3786fd97e2df2c4408edaa1fb4f9cf7f9;hb=08062ae3e0b040022b3e64f357628ad98f1ab572;hp=c5e956e41816f9c68d1c103c0e8f239761e02c4e;hpb=99fab9089e9e1709d9c3a4bc5ced0c137ac59134;p=vlc diff --git a/modules/demux/dts.c b/modules/demux/dts.c index c5e956e418..914c77b378 100644 --- a/modules/demux/dts.c +++ b/modules/demux/dts.c @@ -28,7 +28,8 @@ # include "config.h" #endif -#include +#include +#include #include #include @@ -41,8 +42,8 @@ static void Close ( vlc_object_t * ); vlc_module_begin(); set_category( CAT_INPUT ); set_subcategory( SUBCAT_INPUT_DEMUX ); - set_description( _("Raw DTS demuxer") ); - set_capability( "demux2", 155 ); + set_description( N_("Raw DTS demuxer") ); + set_capability( "demux", 155 ); set_callbacks( Open, Close ); add_shortcut( "dts" ); vlc_module_end(); @@ -55,7 +56,7 @@ static int Control( demux_t *, int, va_list ); struct demux_sys_t { - vlc_bool_t b_start; + bool b_start; es_out_id_t *p_es; /* Packetizer */ @@ -77,56 +78,58 @@ static int Open( vlc_object_t * p_this ) { demux_t *p_demux = (demux_t*)p_this; demux_sys_t *p_sys; - const byte_t *p_peek; + const uint8_t *p_peek; int i_peek = 0; /* Check if we are dealing with a WAV file */ if( stream_Peek( p_demux->s, &p_peek, 20 ) == 20 && !memcmp( p_peek, "RIFF", 4 ) && !memcmp( &p_peek[8], "WAVE", 4 ) ) { - int i_size; - /* Find the wave format header */ - i_peek = 20; + i_peek = 12 + 8; while( memcmp( p_peek + i_peek - 8, "fmt ", 4 ) ) { - i_size = GetDWLE( p_peek + i_peek - 4 ); - if( i_size + i_peek > DTS_PROBE_SIZE ) return VLC_EGENERIC; - i_peek += i_size + 8; + uint32_t i_len = GetDWLE( p_peek + i_peek - 4 ); + if( i_len > DTS_PROBE_SIZE || i_peek + i_len > DTS_PROBE_SIZE ) + return VLC_EGENERIC; + i_peek += i_len + 8; if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek ) return VLC_EGENERIC; } /* Sanity check the wave format header */ - i_size = GetDWLE( p_peek + i_peek - 4 ); - if( i_size + i_peek > DTS_PROBE_SIZE ) return VLC_EGENERIC; - i_peek += i_size + 8; + uint32_t i_len = GetDWLE( p_peek + i_peek - 4 ); + if( i_len > DTS_PROBE_SIZE ) + return VLC_EGENERIC; + + i_peek += i_len + 8; if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek ) return VLC_EGENERIC; - if( GetWLE( p_peek + i_peek - i_size - 8 /* wFormatTag */ ) != + if( GetWLE( p_peek + i_peek - i_len - 8 /* wFormatTag */ ) != 1 /* WAVE_FORMAT_PCM */ ) return VLC_EGENERIC; - if( GetWLE( p_peek + i_peek - i_size - 6 /* nChannels */ ) != 2 ) + if( GetWLE( p_peek + i_peek - i_len - 6 /* nChannels */ ) != 2 ) return VLC_EGENERIC; - if( GetDWLE( p_peek + i_peek - i_size - 4 /* nSamplesPerSec */ ) != + if( GetDWLE( p_peek + i_peek - i_len - 4 /* nSamplesPerSec */ ) != 44100 ) return VLC_EGENERIC; /* Skip the wave header */ while( memcmp( p_peek + i_peek - 8, "data", 4 ) ) { - i_size = GetDWLE( p_peek + i_peek - 4 ); - if( i_size + i_peek > DTS_PROBE_SIZE ) return VLC_EGENERIC; - i_peek += i_size + 8; + uint32_t i_len = GetDWLE( p_peek + i_peek - 4 ); + if( i_len > DTS_PROBE_SIZE || i_peek + i_len > DTS_PROBE_SIZE ) + return VLC_EGENERIC; + i_peek += i_len + 8; if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek ) return VLC_EGENERIC; } /* Some DTS wav files don't begin with a sync code so we do a more * extensive search */ - i_size = stream_Peek( p_demux->s, &p_peek, DTS_PROBE_SIZE ); + int i_size = stream_Peek( p_demux->s, &p_peek, DTS_PROBE_SIZE ); i_size -= DTS_MAX_HEADER_SIZE; while( i_peek < i_size ) @@ -198,7 +201,7 @@ static int Demux( demux_t *p_demux ) while( (p_block_out = p_sys->p_packetizer->pf_packetize( p_sys->p_packetizer, &p_block_in )) ) { - p_sys->b_start = VLC_FALSE; + p_sys->b_start = false; while( p_block_out ) { @@ -208,7 +211,7 @@ static int Demux( demux_t *p_demux ) if( p_block_out->i_length ) { p_sys->i_mux_rate = - p_block_out->i_buffer * I64C(1000000) / p_block_out->i_length; + p_block_out->i_buffer * INT64_C(1000000) / p_block_out->i_length; } /* set PCR */ @@ -232,7 +235,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) if( i_query == DEMUX_SET_TIME ) return VLC_EGENERIC; else - return demux2_vaControlHelper( p_demux->s, + return demux_vaControlHelper( p_demux->s, 0, -1, 8*p_sys->i_mux_rate, 1, i_query, args ); }