devicewidget: Set latency offset's maximum to 5000ms

Airplay hardware has a inherent latency of at least 2 seconds, with
2350ms being a common value.
This commit is contained in:
Colin Leroy 2017-10-06 20:20:16 +02:00 committed by Tanu Kaskinen
parent c7fb1ca9a8
commit 335c26c57c
1 changed files with 2 additions and 2 deletions

View File

@ -65,10 +65,10 @@ DeviceWidget::DeviceWidget(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Buil
channelWidgets[i] = NULL; channelWidgets[i] = NULL;
#ifdef HAVE_GTK3 #ifdef HAVE_GTK3
offsetAdjustment = Gtk::Adjustment::create(0.0, -2000.0, 2000.0, 10.0, 50.0, 0.0); offsetAdjustment = Gtk::Adjustment::create(0.0, -2000.0, 5000.0, 10.0, 50.0, 0.0);
offsetButton->configure(offsetAdjustment, 0, 2); offsetButton->configure(offsetAdjustment, 0, 2);
#else #else
offsetAdjustment = new Gtk::Adjustment(0.0, -2000.0, 2000.0, 10.0, 50.0, 0.0); offsetAdjustment = new Gtk::Adjustment(0.0, -2000.0, 5000.0, 10.0, 50.0, 0.0);
offsetButton->configure(*offsetAdjustment, 0.0, 2); offsetButton->configure(*offsetAdjustment, 0.0, 2);
#endif /* HAVE_GTK3 */ #endif /* HAVE_GTK3 */
} }