Commit e92a3924 authored by Gildas Bazin's avatar Gildas Bazin

* modules/audio_output/portaudio.c: make stereo the default.

parent f4fd6b33
...@@ -355,6 +355,7 @@ static int PAOpenDevice( aout_instance_t *p_aout ) ...@@ -355,6 +355,7 @@ static int PAOpenDevice( aout_instance_t *p_aout )
&val, &text ); &val, &text );
var_Change( p_aout, "audio-device", VLC_VAR_SETDEFAULT, var_Change( p_aout, "audio-device", VLC_VAR_SETDEFAULT,
&val, NULL ); &val, NULL );
var_Set( p_aout, "audio-device", val );
msg_Dbg( p_aout, "device supports 2 channels" ); msg_Dbg( p_aout, "device supports 2 channels" );
} }
if( p_sys->deviceInfo->maxOutputChannels >= 4 ) if( p_sys->deviceInfo->maxOutputChannels >= 4 )
......
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