summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/combined/xine_theora_decoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/combined/xine_theora_decoder.c b/src/combined/xine_theora_decoder.c
index 8dd997692..41e11b054 100644
--- a/src/combined/xine_theora_decoder.c
+++ b/src/combined/xine_theora_decoder.c
@@ -63,7 +63,7 @@ typedef struct theora_decoder_s {
xine_stream_t* stream;
int reject;
int op_max_size;
- char* packet;
+ unsigned char* packet;
int done;
int width, height;
double ratio;
@@ -74,7 +74,7 @@ typedef struct theora_decoder_s {
int initialized;
} theora_decoder_t;
-static void readin_op (theora_decoder_t *this, char* src, int size) {
+static void readin_op (theora_decoder_t *this, unsigned char* src, int size) {
if ( this->done+size > this->op_max_size) {
while (this->op_max_size < this->done+size)
this->op_max_size=this->op_max_size*2;