# HG changeset patch # User William Pitcock # Date 1240629841 18000 # Node ID ca7d5de41217f715b18a5ca752e7b20e6a44a99d # Parent c33daa1689a413eada7e695770ce1f6ed44639a0 Allow much larger buffer in the config GUI. diff -r c33daa1689a4 -r ca7d5de41217 src/icecast/icecast.c --- 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);