Commit 66fa4d5c authored by Laurent Aimar's avatar Laurent Aimar

* input: warning fix (int ->byte_t*).

parent ec70a047
...@@ -309,7 +309,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input, ...@@ -309,7 +309,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
if( p_input->b_restart ) if( p_input->b_restart )
{ {
aout_fifo_t fifo, dummy_fifo; aout_fifo_t fifo, dummy_fifo;
int p_first_byte_to_mix; byte_t *p_first_byte_to_mix;
vlc_mutex_lock( &p_aout->mixer_lock ); vlc_mutex_lock( &p_aout->mixer_lock );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment