38 #define MM_PREAMBLE_SIZE 6
40 #define MM_TYPE_INTER 0x5
41 #define MM_TYPE_INTRA 0x8
42 #define MM_TYPE_INTRA_HH 0xc
43 #define MM_TYPE_INTER_HH 0xd
44 #define MM_TYPE_INTRA_HHV 0xe
45 #define MM_TYPE_INTER_HHV 0xf
46 #define MM_TYPE_PALETTE 0x31
80 for (i = 0; i < 128; i++) {
81 s->
palette[i] = bytestream2_get_be24(&s->
gb);
98 int run_length,
color;
103 color = bytestream2_get_byte(&s->
gb);
107 run_length = (color & 0x7f) + 2;
108 color = bytestream2_get_byte(&s->
gb);
136 int data_off = bytestream2_get_le16(&s->
gb), y;
145 int length = bytestream2_get_byte(&s->
gb);
146 int x = bytestream2_get_byte(&s->
gb) + ((length & 0x80) << 1);
157 for(i=0; i<length; i++) {
158 int replace_array = bytestream2_get_byte(&s->
gb);
160 int replace = (replace_array >> (7-j)) & 1;
164 int color = bytestream2_get_byte(&data_ptr);
185 void *
data,
int *data_size,
188 const uint8_t *buf = avpkt->
data;
189 int buf_size = avpkt->
size;