diff options
author | Jan D. Behrens <zykure@web.de> | 2011-03-13 11:12:28 +0100 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2011-03-14 20:58:35 +0100 |
commit | 167aec58c1adcdf2309fd934d9ee82bb830ceab1 (patch) | |
tree | b5ae62879683852840e45574628544313a8854f9 /plugins/pulse | |
parent | 5895c44afa0e89deb53a579bdb02cd9713576431 (diff) |
removed obsolete samplerate setting in pulseaudio plugin
Diffstat (limited to 'plugins/pulse')
-rw-r--r-- | plugins/pulse/pulse.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/pulse/pulse.c b/plugins/pulse/pulse.c index a919ab6a..b3f5c040 100644 --- a/plugins/pulse/pulse.c +++ b/plugins/pulse/pulse.c @@ -42,7 +42,6 @@ static DB_output_t plugin; DB_functions_t * deadbeef; -#define CONFSTR_PULSE_SAMPLERATE "pulse.samplerate" #define CONFSTR_PULSE_SERVERADDR "pulse.serveraddr" #define CONFSTR_PULSE_BUFFERSIZE "pulse.buffersize" @@ -345,8 +344,7 @@ DB_plugin_t * pulse_load(DB_functions_t *api) static const char settings_dlg[] = "property \"PulseAudio server\" entry " CONFSTR_PULSE_SERVERADDR " default;\n" - "property \"Preferred buffer size\" entry " CONFSTR_PULSE_BUFFERSIZE " 4096;\n" - "property \"Samplerate\" entry " CONFSTR_PULSE_SAMPLERATE " 44100;\n"; + "property \"Preferred buffer size\" entry " CONFSTR_PULSE_BUFFERSIZE " 4096;\n"; static DB_output_t plugin = { |