summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2007-05-26 03:37:45 +0100
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2007-05-26 03:37:45 +0100
commit9064cfa92cc82627442ca0a9df20e759b792acc8 (patch)
tree33d68e025bcd97144e721e98419f4946dcadc556
parentfb21dd402a46fa6bf5972e82008dfa8a9909c78b (diff)
downloadxine-lib-9064cfa92cc82627442ca0a9df20e759b792acc8.tar.gz
xine-lib-9064cfa92cc82627442ca0a9df20e759b792acc8.tar.bz2
Shuffle the HTTP input plugin's internal data slightly.
-rw-r--r--src/input/input_http.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c
index b3e5a033b..12b7f3f35 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -93,16 +93,18 @@ typedef struct {
char preview[MAX_PREVIEW_SIZE];
off_t preview_size;
-
+
+ /* 2 spare bytes here */
+
+ /* NSV */
+ unsigned char is_nsv; /* bool */
+
/* ShoutCast */
- int shoutcast_mode;
+ unsigned char shoutcast_mode; /* bool */
int shoutcast_metaint;
off_t shoutcast_pos;
char *shoutcast_songtitle;
- /* NSV */
- int is_nsv;
-
/* scratch buffer for forward seeking */
char seek_buf[BUFSIZE];