]> git.sesse.net Git - vlc/blobdiff - modules/gui/qnx/aout.c
Don't re-invent uint8_t - remove byte_t
[vlc] / modules / gui / qnx / aout.c
index 33a8f4e98aa0c55896bdb66b8c1f5ebc8b4c9f7c..befcbdb3c9fa0e901aa6d12a0aa4a74faa20d39a 100644 (file)
@@ -47,7 +47,7 @@ struct aout_sys_t
     int          i_card;
     int          i_device;
 
-    byte_t *     p_silent_buffer;
+    uint8_t *    p_silent_buffer;
 };
 
 #define DEFAULT_FRAME_SIZE 2048
@@ -269,7 +269,7 @@ static int QNXaoutThread( aout_instance_t * p_aout )
     {
         aout_buffer_t * p_buffer;
         int i_tmp, i_size;
-        byte_t * p_bytes;
+        uint8_t * p_bytes;
 
         if ( p_aout->output.output.i_format != VLC_FOURCC('s','p','d','i') )
         {