X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=lib%2Fmedia_player_internal.h;h=27fbf1ff9185e5d4665e91363de08916d0d125fa;hb=6226ab46871009ba21e3d6e242af5029049e50e0;hp=185f183e9bd3ce70ea3fb6744e0eb79c4780d8da;hpb=9abcaacf83bd53b1f4b6569f7952e7025ddd0860;p=vlc diff --git a/lib/media_player_internal.h b/lib/media_player_internal.h index 185f183e9b..27fbf1ff91 100644 --- a/lib/media_player_internal.h +++ b/lib/media_player_internal.h @@ -34,6 +34,8 @@ #include #include +#include "../modules/audio_filter/equalizer_presets.h" + struct libvlc_media_player_t { VLC_COMMON_MEMBERS @@ -62,4 +64,13 @@ libvlc_track_description_t * libvlc_get_track_description( libvlc_media_player_t *p_mi, const char *psz_variable ); +/** + * Internal equalizer structure. + */ +struct libvlc_equalizer_t +{ + float f_preamp; + float f_amp[EQZ_BANDS_MAX]; +}; + #endif