comparison 4xm.c @ 3776:1843a85123b7 libavcodec

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 68721b62a528
children c8c591fe26f8
comparison
equal deleted inserted replaced
3775:8e1ed8300165 3776:1843a85123b7
102 102
103 static VLC block_type_vlc[4]; 103 static VLC block_type_vlc[4];
104 104
105 105
106 typedef struct CFrameBuffer{ 106 typedef struct CFrameBuffer{
107 int allocated_size; 107 unsigned int allocated_size;
108 int size; 108 unsigned int size;
109 int id; 109 int id;
110 uint8_t *data; 110 uint8_t *data;
111 }CFrameBuffer; 111 }CFrameBuffer;
112 112
113 typedef struct FourXContext{ 113 typedef struct FourXContext{