diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-13 16:39:14 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-13 16:39:14 +0200 |
commit | dd2635ba0808f1845985def41589ffa6f7fd600a (patch) | |
tree | 0c5cc75ca959ba125d0e95c3cf05d1f7cc8bafae /src | |
parent | 69fb99f92a8db3aebe0c66aaa146a26d12ac1d15 (diff) | |
download | xine-lib-dd2635ba0808f1845985def41589ffa6f7fd600a.tar.gz xine-lib-dd2635ba0808f1845985def41589ffa6f7fd600a.tar.bz2 |
Remove signedness warnings from the theora decoder.
Diffstat (limited to 'src')
-rw-r--r-- | src/combined/xine_theora_decoder.c | 4 |
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; |