Commit 1c757f0a authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

DirectX: don't set the cooperative level on WinRT

WinRT apps are not cooperative :)
parent 2f1ba54e
...@@ -612,12 +612,14 @@ static int InitDirectSound( audio_output_t *p_aout ) ...@@ -612,12 +612,14 @@ static int InitDirectSound( audio_output_t *p_aout )
* sound without any video, and so what window handle should we use ??? * sound without any video, and so what window handle should we use ???
* The hack for now is to use the Desktop window handle - it seems to be * The hack for now is to use the Desktop window handle - it seems to be
* working */ * working */
#ifndef VLC_WINSTORE_APP
if( IDirectSound_SetCooperativeLevel( p_aout->sys->p_dsobject, if( IDirectSound_SetCooperativeLevel( p_aout->sys->p_dsobject,
GetDesktopWindow(), GetDesktopWindow(),
DSSCL_EXCLUSIVE) ) DSSCL_EXCLUSIVE) )
{ {
msg_Warn( p_aout, "cannot set direct sound cooperative level" ); msg_Warn( p_aout, "cannot set direct sound cooperative level" );
} }
#endif
return VLC_SUCCESS; return VLC_SUCCESS;
error: error:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment