]> git.sesse.net Git - vlc/blobdiff - modules/audio_mixer/trivial.c
Don't re-invent uint8_t - remove byte_t
[vlc] / modules / audio_mixer / trivial.c
index 9eb4fbc17a8ce687113d4c916cc4712ab7507cdb..4ecc43ed5edeebc9568e50f1a580a9197c79237e 100644 (file)
@@ -79,8 +79,8 @@ static void DoWork( aout_instance_t * p_aout, aout_buffer_t * p_buffer )
     int i_nb_channels = aout_FormatNbChannels( &p_aout->mixer.mixer );
     int i_nb_bytes = p_buffer->i_nb_samples * sizeof(int32_t)
                       * i_nb_channels;
-    byte_t * p_in;
-    byte_t * p_out;
+    uint8_t * p_in;
+    uint8_t * p_out;
 
     while ( p_input->b_error )
     {