mirror of https://github.com/mpv-player/mpv
add ao_win32
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7917 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
bdf7fe0825
commit
2aead272b5
|
@ -38,6 +38,9 @@ extern ao_functions_t audio_out_sun;
|
|||
#ifdef USE_SGI_AUDIO
|
||||
extern ao_functions_t audio_out_sgi;
|
||||
#endif
|
||||
#ifdef HAVE_WIN32WAVEOUT
|
||||
extern ao_functions_t audio_out_win32;
|
||||
#endif
|
||||
#ifdef HAVE_DXR2
|
||||
extern ao_functions_t audio_out_dxr2;
|
||||
#endif
|
||||
|
@ -69,6 +72,9 @@ ao_functions_t* audio_out_drivers[] =
|
|||
#ifdef USE_SUN_AUDIO
|
||||
&audio_out_sun,
|
||||
#endif
|
||||
#ifdef HAVE_WIN32WAVEOUT
|
||||
&audio_out_win32,
|
||||
#endif
|
||||
// wrappers:
|
||||
#ifdef USE_ARTS
|
||||
&audio_out_arts,
|
||||
|
|
Loading…
Reference in New Issue