From dd2635ba0808f1845985def41589ffa6f7fd600a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Wed, 13 Jun 2007 16:39:14 +0200 Subject: Remove signedness warnings from the theora decoder. --- src/combined/xine_theora_decoder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; -- cgit v1.2.3