Displaying 1 result from an estimated 1 matches for "rd_index".
Did you mean:
fd_index
2004 Sep 10
0
http streaming in the xmms plugin
...putPlugin flac_ip;
+
+ #undef DEBUG_UDP
+
+ /* Static udp channel functions */
+ static int udp_establish_listener (gint *sock);
+ static int udp_check_for_data(gint sock);
+
+ static char *flac_http_get_title(char *url);
+
+ static gboolean prebuffering, going, eof = FALSE;
+ static gint sock, rd_index, wr_index, buffer_length, prebuffer_length;
+ static guint64 buffer_read = 0;
+ static gchar *buffer;
+ static guint64 offset;
+ static pthread_t thread;
+ static GtkWidget *error_dialog = NULL;
+
+ static FILE *output_file = NULL;
+
+ #define BASE64_LENGTH(len) (4 * (((len) + 2) / 3))
+
+ /* En...