1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-16 16:02:54 +02:00

headphone mixer: kill config_Get

This commit is contained in:
Rémi Denis-Courmont 2009-12-30 21:26:23 +02:00
parent ccb340ff44
commit 8417358d89

View File

@ -473,7 +473,7 @@ static int OpenFilter( vlc_object_t *p_this )
}
if( p_filter->fmt_in.audio.i_physical_channels == (AOUT_CHAN_LEFT|AOUT_CHAN_RIGHT)
&& ( p_filter->fmt_in.audio.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
&& !config_GetInt( p_filter, "headphone-dolby" ) )
&& !var_InheritInteger( p_filter, "headphone-dolby" ) )
{
b_fit = false;
p_filter->fmt_in.audio.i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT |