2019-06-17 Fred Gleason <fredg@paravelsystems.com>

* Removed the 'UseStreamMeters=' directive from the '[Hacks]'
	section of rd.conf(5).
This commit is contained in:
Fred Gleason
2019-06-17 18:10:38 -04:00
parent 6a87f19917
commit 94d7544574
7 changed files with 6 additions and 56 deletions

View File

@@ -333,12 +333,6 @@ QString RDConfig::jackPort(int num,int endpt) const
}
bool RDConfig::useStreamMeters() const
{
return conf_use_stream_meters;
}
bool RDConfig::disableMaintChecks() const
{
return conf_disable_maint_checks;
@@ -541,7 +535,7 @@ bool RDConfig::load()
conf_alsa_period_size=
profile->intValue("Alsa","PeriodSize",RD_ALSA_DEFAULT_PERIOD_SIZE);
conf_alsa_channels_per_pcm=profile->intValue("Alsa","ChannelsPerPcm",-1);
conf_use_stream_meters=profile->boolValue("Hacks","UseStreamMeters",false);
conf_disable_maint_checks=
profile->boolValue("Hacks","DisableMaintChecks",false);
conf_lock_rdairplay_memory=
@@ -658,7 +652,6 @@ void RDConfig::clear()
conf_audio_store_cae_hostname="";
conf_jack_ports[0].clear();
conf_jack_ports[1].clear();
conf_use_stream_meters=false;
conf_disable_maint_checks=false;
conf_lock_rdairplay_memory=false;
conf_uid=65535;

View File

@@ -93,7 +93,6 @@ class RDConfig
QString audioStoreXportHostname() const;
int jackConnections() const;
QString jackPort(int num,int endpt) const;
bool useStreamMeters() const;
bool disableMaintChecks() const;
bool lockRdairplayMemory() const;
bool enableMixerLogging() const;
@@ -158,7 +157,6 @@ class RDConfig
QString conf_audio_store_mount_options;
QString conf_audio_store_xport_hostname;
QString conf_audio_store_cae_hostname;
bool conf_use_stream_meters;
bool conf_disable_maint_checks;
bool conf_lock_rdairplay_memory;
std::vector<QString> conf_jack_ports[2];