Commit a4cbc15c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

var_InheritInteger -> var_InheritBool

(cherry picked from commit ae2c9e4fb61cd0be61d160d1d0c6aae353706497)
parent a6d4afcf
...@@ -679,7 +679,7 @@ static int DemuxOpen( vlc_object_t *p_this ) ...@@ -679,7 +679,7 @@ static int DemuxOpen( vlc_object_t *p_this )
ParseMRL( p_sys, p_demux->psz_path, (vlc_object_t *) p_demux ); ParseMRL( p_sys, p_demux->psz_path, (vlc_object_t *) p_demux );
#ifdef HAVE_LIBV4L2 #ifdef HAVE_LIBV4L2
if( !var_InheritInteger( p_this, CFG_PREFIX "use-libv4l2" ) ) if( !var_InheritBool( p_this, CFG_PREFIX "use-libv4l2" ) )
{ {
msg_Dbg( p_this, "Trying direct kernel v4l2" ); msg_Dbg( p_this, "Trying direct kernel v4l2" );
use_kernel_v4l2( p_sys ); use_kernel_v4l2( p_sys );
...@@ -1134,7 +1134,7 @@ static int AccessOpen( vlc_object_t * p_this ) ...@@ -1134,7 +1134,7 @@ static int AccessOpen( vlc_object_t * p_this )
ParseMRL( p_sys, p_access->psz_path, (vlc_object_t *) p_access ); ParseMRL( p_sys, p_access->psz_path, (vlc_object_t *) p_access );
#ifdef HAVE_LIBV4L2 #ifdef HAVE_LIBV4L2
if( !var_InheritInteger( p_this, CFG_PREFIX "use-libv4l2" ) ) if( !var_InheritBool( p_this, CFG_PREFIX "use-libv4l2" ) )
{ {
msg_Dbg( p_this, "Trying direct kernel v4l2" ); msg_Dbg( p_this, "Trying direct kernel v4l2" );
use_kernel_v4l2( p_sys ); use_kernel_v4l2( p_sys );
......
...@@ -546,7 +546,7 @@ VCDParse( access_t * p_access, /*out*/ vcdinfo_itemid_t * p_itemid, ...@@ -546,7 +546,7 @@ VCDParse( access_t * p_access, /*out*/ vcdinfo_itemid_t * p_itemid,
char *psz_source; char *psz_source;
char *psz_next; char *psz_next;
if( var_InheritInteger( p_access, MODULE_STRING "-PBC" ) ) { if( var_InheritBool( p_access, MODULE_STRING "-PBC" ) ) {
p_itemid->type = VCDINFO_ITEM_TYPE_LID; p_itemid->type = VCDINFO_ITEM_TYPE_LID;
p_itemid->num = 1; p_itemid->num = 1;
*play_single_item = false; *play_single_item = false;
......
...@@ -279,7 +279,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -279,7 +279,7 @@ static int Open( vlc_object_t *p_this )
} }
#if 0 //def HAVE_AVAHI_CLIENT #if 0 //def HAVE_AVAHI_CLIENT
if( var_InheritInteger(p_this, SOUT_CFG_PREFIX "bonjour") ) if( var_InheritBool(p_this, SOUT_CFG_PREFIX "bonjour") )
{ {
char *psz_txt, *psz_name; char *psz_txt, *psz_name;
playlist_t *p_playlist = pl_Get( p_access ); playlist_t *p_playlist = pl_Get( p_access );
......
...@@ -197,7 +197,7 @@ static int Init( vlc_object_t *p_this, struct filter_sys_t * p_data ...@@ -197,7 +197,7 @@ static int Init( vlc_object_t *p_this, struct filter_sys_t * p_data
int i_source_channel_offset; int i_source_channel_offset;
unsigned int i; unsigned int i;
if( var_InheritInteger( p_this, "headphone-compensate" ) ) if( var_InheritBool( p_this, "headphone-compensate" ) )
{ {
/* minimal distance to any speaker */ /* minimal distance to any speaker */
if( i_physical_channels & AOUT_CHAN_REARCENTER ) if( i_physical_channels & AOUT_CHAN_REARCENTER )
...@@ -473,7 +473,7 @@ static int OpenFilter( vlc_object_t *p_this ) ...@@ -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) 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 ) && ( p_filter->fmt_in.audio.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
&& !var_InheritInteger( p_filter, "headphone-dolby" ) ) && !var_InheritBool( p_filter, "headphone-dolby" ) )
{ {
b_fit = false; b_fit = false;
p_filter->fmt_in.audio.i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | p_filter->fmt_in.audio.i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT |
......
...@@ -213,7 +213,7 @@ static int Init( vlc_object_t *p_this, struct filter_sys_t * p_data, ...@@ -213,7 +213,7 @@ static int Init( vlc_object_t *p_this, struct filter_sys_t * p_data,
int i_source_channel_offset; int i_source_channel_offset;
unsigned int i; unsigned int i;
if( var_InheritInteger( p_this, "headphone-compensate" ) ) if( var_InheritBool( p_this, "headphone-compensate" ) )
{ {
/* minimal distance to any speaker */ /* minimal distance to any speaker */
if( i_physical_channels & AOUT_CHAN_REARCENTER ) if( i_physical_channels & AOUT_CHAN_REARCENTER )
......
...@@ -107,14 +107,14 @@ vlc_module_end () ...@@ -107,14 +107,14 @@ vlc_module_end ()
static int Open( vlc_object_t *p_this, filter_sys_t *p_sys, static int Open( vlc_object_t *p_this, filter_sys_t *p_sys,
audio_format_t input, audio_format_t output ) audio_format_t input, audio_format_t output )
{ {
p_sys->b_dynrng = var_InheritInteger( p_this, "a52-dynrng" ); p_sys->b_dynrng = var_InheritBool( p_this, "a52-dynrng" );
p_sys->b_dontwarn = 0; p_sys->b_dontwarn = 0;
/* No upmixing: it's not necessary and some other filters may want to do /* No upmixing: it's not necessary and some other filters may want to do
* it themselves. */ * it themselves. */
if ( aout_FormatNbChannels( &output ) > aout_FormatNbChannels( &input ) ) if ( aout_FormatNbChannels( &output ) > aout_FormatNbChannels( &input ) )
{ {
if ( ! var_InheritInteger( p_this, "a52-upmix" ) ) if ( ! var_InheritBool( p_this, "a52-upmix" ) )
{ {
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
...@@ -296,7 +296,7 @@ static int OpenFilter( vlc_object_t *p_this ) ...@@ -296,7 +296,7 @@ static int OpenFilter( vlc_object_t *p_this )
} }
#if !defined( SYS_DARWIN ) #if !defined( SYS_DARWIN )
if( !var_InheritInteger( p_this, "hq-resampling" ) ) if( !var_InheritBool( p_this, "hq-resampling" ) )
{ {
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
...@@ -186,7 +186,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -186,7 +186,7 @@ static int Open( vlc_object_t *p_this )
} }
/* Auto connect ports if we were asked to */ /* Auto connect ports if we were asked to */
if( var_InheritInteger( p_aout, AUTO_CONNECT_OPTION ) ) if( var_InheritBool( p_aout, AUTO_CONNECT_OPTION ) )
{ {
unsigned int i_in_ports; unsigned int i_in_ports;
char *psz_regex = var_InheritString( p_aout, CONNECT_REGEX_OPTION ); char *psz_regex = var_InheritString( p_aout, CONNECT_REGEX_OPTION );
......
...@@ -509,7 +509,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -509,7 +509,7 @@ static int Open( vlc_object_t *p_this )
} }
p_aout->output.p_sys->b_workaround_buggy_driver = p_aout->output.p_sys->b_workaround_buggy_driver =
var_InheritInteger( p_aout, "oss-buggy" ); var_InheritBool( p_aout, "oss-buggy" );
/* Create OSS thread and wait for its readiness. */ /* Create OSS thread and wait for its readiness. */
if( vlc_thread_create( p_aout, "aout", OSSThread, if( vlc_thread_create( p_aout, "aout", OSSThread,
......
...@@ -157,7 +157,7 @@ int Open ( vlc_object_t *p_this ) ...@@ -157,7 +157,7 @@ int Open ( vlc_object_t *p_this )
p_intf->pf_run = RunIntf; p_intf->pf_run = RunIntf;
p_intf->p_sys->b_use_rotate = p_intf->p_sys->b_use_rotate =
var_InheritInteger( p_intf, "motion-use-rotate" ); var_InheritBool( p_intf, "motion-use-rotate" );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
...@@ -138,13 +138,13 @@ static void Run( intf_thread_t *p_intf ) ...@@ -138,13 +138,13 @@ static void Run( intf_thread_t *p_intf )
p_intf->p_sys->psz_service = p_intf->p_sys->psz_service ? p_intf->p_sys->psz_service = p_intf->p_sys->psz_service ?
p_intf->p_sys->psz_service : strdup(VLCSERVICENAME); p_intf->p_sys->psz_service : strdup(VLCSERVICENAME);
if( var_InheritInteger( p_intf, "ntservice-install" ) ) if( var_InheritBool( p_intf, "ntservice-install" ) )
{ {
NTServiceInstall( p_intf ); NTServiceInstall( p_intf );
return; return;
} }
if( var_InheritInteger( p_intf, "ntservice-uninstall" ) ) if( var_InheritBool( p_intf, "ntservice-uninstall" ) )
{ {
NTServiceUninstall( p_intf ); NTServiceUninstall( p_intf );
return; return;
......
...@@ -283,7 +283,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -283,7 +283,7 @@ static int Open( vlc_object_t * p_this )
/* For unseekable stream, automaticaly use Demux_UnSeekable */ /* For unseekable stream, automaticaly use Demux_UnSeekable */
if( !p_sys->b_seekable if( !p_sys->b_seekable
|| var_InheritInteger( p_demux, "avi-interleaved" ) ) || var_InheritBool( p_demux, "avi-interleaved" ) )
{ {
p_demux->pf_demux = Demux_UnSeekable; p_demux->pf_demux = Demux_UnSeekable;
} }
......
...@@ -43,7 +43,7 @@ EbmlParser::EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux ...@@ -43,7 +43,7 @@ EbmlParser::EbmlParser( EbmlStream *es, EbmlElement *el_start, demux_t *p_demux
mi_level = 1; mi_level = 1;
mi_user_level = 1; mi_user_level = 1;
mb_keep = false; mb_keep = false;
mb_dummy = var_InheritInteger( p_demux, "mkv-use-dummy" ); mb_dummy = var_InheritBool( p_demux, "mkv-use-dummy" );
} }
EbmlParser::~EbmlParser( void ) EbmlParser::~EbmlParser( void )
...@@ -127,7 +127,7 @@ void EbmlParser::Reset( demux_t *p_demux ) ...@@ -127,7 +127,7 @@ void EbmlParser::Reset( demux_t *p_demux )
mi_user_level = mi_level = 1; mi_user_level = mi_level = 1;
// a little faster and cleaner // a little faster and cleaner
m_es->I_O().setFilePointer( static_cast<KaxSegment*>(m_el[0])->GetGlobalPosition(0) ); m_es->I_O().setFilePointer( static_cast<KaxSegment*>(m_el[0])->GetGlobalPosition(0) );
mb_dummy = var_InheritInteger( p_demux, "mkv-use-dummy" ); mb_dummy = var_InheritBool( p_demux, "mkv-use-dummy" );
} }
......
...@@ -1033,7 +1033,7 @@ void matroska_segment_c::ParseChapters( KaxChapters *chapters ) ...@@ -1033,7 +1033,7 @@ void matroska_segment_c::ParseChapters( KaxChapters *chapters )
} }
else if( MKV_IS_ID( l, KaxEditionFlagOrdered ) ) else if( MKV_IS_ID( l, KaxEditionFlagOrdered ) )
{ {
p_edition->b_ordered = var_InheritInteger( &sys.demuxer, "mkv-use-ordered-chapters" ) ? (uint8(*static_cast<KaxEditionFlagOrdered *>( l )) != 0) : 0; p_edition->b_ordered = var_InheritBool( &sys.demuxer, "mkv-use-ordered-chapters" ) ? (uint8(*static_cast<KaxEditionFlagOrdered *>( l )) != 0) : 0;
} }
else if( MKV_IS_ID( l, KaxEditionFlagDefault ) ) else if( MKV_IS_ID( l, KaxEditionFlagDefault ) )
{ {
......
...@@ -139,7 +139,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -139,7 +139,7 @@ static int Open( vlc_object_t * p_this )
goto error; goto error;
} }
if (var_InheritInteger( p_demux, "mkv-preload-local-dir" )) if (var_InheritBool( p_demux, "mkv-preload-local-dir" ))
{ {
/* get the files from the same dir from the same family (based on p_demux->psz_path) */ /* get the files from the same dir from the same family (based on p_demux->psz_path) */
if (p_demux->psz_path[0] != '\0' && !strcmp(p_demux->psz_access, "")) if (p_demux->psz_path[0] != '\0' && !strcmp(p_demux->psz_access, ""))
...@@ -421,7 +421,7 @@ static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, chapter_it ...@@ -421,7 +421,7 @@ static void Seek( demux_t *p_demux, mtime_t i_date, double f_percent, chapter_it
} }
/* seek without index or without date */ /* seek without index or without date */
if( f_percent >= 0 && (var_InheritInteger( p_demux, "mkv-seek-percent" ) || !p_segment->b_cues || i_date < 0 )) if( f_percent >= 0 && (var_InheritBool( p_demux, "mkv-seek-percent" ) || !p_segment->b_cues || i_date < 0 ))
{ {
if( p_sys->f_duration >= 0 && p_segment->b_cues ) if( p_sys->f_duration >= 0 && p_segment->b_cues )
{ {
......
...@@ -538,7 +538,7 @@ static int OpenBlending( intf_thread_t *p_intf ) ...@@ -538,7 +538,7 @@ static int OpenBlending( intf_thread_t *p_intf )
p_intf->p_sys->fmt_out.i_sar_den; p_intf->p_sys->fmt_out.i_sar_den;
p_intf->p_sys->p_blend->fmt_out.video.i_chroma = p_intf->p_sys->p_blend->fmt_out.video.i_chroma =
p_intf->p_sys->fmt_out.i_chroma; p_intf->p_sys->fmt_out.i_chroma;
if( var_InheritInteger( p_intf, "freetype-yuvp" ) ) if( var_InheritBool( p_intf, "freetype-yuvp" ) )
p_intf->p_sys->p_blend->fmt_in.video.i_chroma = p_intf->p_sys->p_blend->fmt_in.video.i_chroma =
VLC_CODEC_YUVP; VLC_CODEC_YUVP;
else else
......
...@@ -87,7 +87,7 @@ SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf, ...@@ -87,7 +87,7 @@ SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf,
{ {
volumeSlider = new SoundSlider( this, volumeSlider = new SoundSlider( this,
config_GetInt( p_intf, "volume-step" ), config_GetInt( p_intf, "volume-step" ),
var_InheritInteger( p_intf, "qt-volume-complete" ), var_InheritBool( p_intf, "qt-volume-complete" ),
var_InheritString( p_intf, "qt-slider-colours" ) ); var_InheritString( p_intf, "qt-slider-colours" ) );
} }
else else
......
...@@ -110,7 +110,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -110,7 +110,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
b_autoresize = var_InheritBool( p_intf, "qt-video-autoresize" ); b_autoresize = var_InheritBool( p_intf, "qt-video-autoresize" );
/* Are we in the enhanced always-video mode or not ? */ /* Are we in the enhanced always-video mode or not ? */
i_visualmode = var_InheritInteger( p_intf, "qt-minimal-view" ); i_visualmode = var_InheritBool( p_intf, "qt-minimal-view" );
/* Do we want anoying popups or not */ /* Do we want anoying popups or not */
b_notificationEnabled = var_InheritBool( p_intf, "qt-notification" ); b_notificationEnabled = var_InheritBool( p_intf, "qt-notification" );
......
...@@ -141,7 +141,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -141,7 +141,7 @@ static int Open( vlc_object_t *p_this )
xosd_set_font( p_osd, psz_font ); xosd_set_font( p_osd, psz_font );
xosd_set_colour( p_osd, psz_colour ); xosd_set_colour( p_osd, psz_colour );
xosd_set_timeout( p_osd, 3 ); xosd_set_timeout( p_osd, 3 );
xosd_set_pos( p_osd, var_InheritInteger( p_intf, "xosd-position" ) ? xosd_set_pos( p_osd, var_InheritBool( p_intf, "xosd-position" ) ?
XOSD_bottom: XOSD_top ); XOSD_bottom: XOSD_top );
xosd_set_horizontal_offset( p_osd, xosd_set_horizontal_offset( p_osd,
var_InheritInteger( p_intf, "xosd-text-offset" ) ); var_InheritInteger( p_intf, "xosd-text-offset" ) );
......
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