X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_aout.h;h=1eddf898991c382239c0dde47614309060ad7fb1;hb=c3d58105344a51ff1e20c99ea4c6bd64e61f63be;hp=5a7d5f3866cdf57efd99d0e487726bbca56c7fa1;hpb=df61d33b06e2b3cbbe746b2f5a9bea5b370c24ff;p=vlc diff --git a/include/vlc_aout.h b/include/vlc_aout.h index 5a7d5f3866..1eddf89899 100644 --- a/include/vlc_aout.h +++ b/include/vlc_aout.h @@ -21,10 +21,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#if !defined( __LIBVLC__ ) - #error You are not libvlc or one of its plugins. You cannot include this file -#endif - #ifndef _VLC_AOUT_H #define _VLC_AOUT_H 1 @@ -137,7 +133,7 @@ typedef int32_t vlc_fixed_t; /** audio output buffer */ struct aout_buffer_t { - byte_t * p_buffer; + uint8_t * p_buffer; int i_alloc_type; /* i_size is the real size of the buffer (used for debug ONLY), i_nb_bytes * is the number of significative bytes in it. */ @@ -269,7 +265,7 @@ struct aout_input_t aout_fifo_t fifo; /* Mixer information */ - byte_t * p_first_byte_to_mix; + uint8_t * p_first_byte_to_mix; audio_replay_gain_t replay_gain; float f_multiplier;