Mercurial > audlegacy-plugins
changeset 3071:ca7d5de41217
Allow much larger buffer in the config GUI.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Fri, 24 Apr 2009 22:24:01 -0500 |
parents | c33daa1689a4 |
children | 8f56795e348d |
files | src/icecast/icecast.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/icecast/icecast.c Fri Apr 24 10:00:27 2009 -0500 +++ b/src/icecast/icecast.c Fri Apr 24 22:24:01 2009 -0500 @@ -747,7 +747,7 @@ label = gtk_label_new(_("Buffer size (bytes):")); gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); - buffersize_spin = gtk_spin_button_new_with_range(1.0, 65535.0, 1.0); + buffersize_spin = gtk_spin_button_new_with_range(1.0, 256000.0, 1.0); gtk_widget_set_tooltip_text(buffersize_spin, _("Internal buffer size\nTry to increase this if you are experiencing audio skipping on client side")); gtk_spin_button_set_digits(GTK_SPIN_BUTTON(buffersize_spin), 0);