mirror of https://github.com/mpv-player/mpv
Change some types to uint8_t where appropriate
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21939 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
e6c460e462
commit
410b243885
|
@ -24,7 +24,7 @@ typedef struct {
|
|||
GifFileType *gif;
|
||||
int w, h;
|
||||
int useref;
|
||||
char *refimg;
|
||||
uint8_t *refimg;
|
||||
} gif_priv_t;
|
||||
|
||||
#define GIF_SIGNATURE (('G' << 16) | ('I' << 8) | 'F')
|
||||
|
@ -70,7 +70,7 @@ static int demux_gif_fill_buffer(demuxer_t *demuxer, demux_stream_t *ds)
|
|||
int len = 0;
|
||||
demux_packet_t *dp = NULL;
|
||||
ColorMapObject *effective_map = NULL;
|
||||
char *buf = NULL;
|
||||
uint8_t *buf = NULL;
|
||||
int refmode = 0;
|
||||
int transparency = 0;
|
||||
uint8_t transparent_col;
|
||||
|
|
Loading…
Reference in New Issue