Lines Matching refs:chunk_id
77 int chunk_id, int size, const uint8_t *data) in cinepak_decode_codebook() argument
85 n = (chunk_id & 0x04) ? 4 : 6; in cinepak_decode_codebook()
91 if ((chunk_id & 0x01) && !(mask >>= 1)) { in cinepak_decode_codebook()
100 if (!(chunk_id & 0x01) || (flag & mask)) { in cinepak_decode_codebook()
133 int chunk_id, int size, const uint8_t *data) in cinepak_decode_vectors() argument
164 if ((chunk_id & 0x01) && !(mask >>= 1)) { in cinepak_decode_vectors()
173 if (!(chunk_id & 0x01) || (flag & mask)) { in cinepak_decode_vectors()
174 if (!(chunk_id & 0x02) && !(mask >>= 1)) { in cinepak_decode_vectors()
183 if ((chunk_id & 0x02) || (~flag & mask)) { in cinepak_decode_vectors()
270 int chunk_id, chunk_size; in cinepak_decode_strip() local
279 chunk_id = data[0]; in cinepak_decode_strip()
287 switch (chunk_id) { in cinepak_decode_strip()
293 cinepak_decode_codebook (strip->v4_codebook, chunk_id, in cinepak_decode_strip()
301 cinepak_decode_codebook (strip->v1_codebook, chunk_id, in cinepak_decode_strip()
308 return cinepak_decode_vectors (s, strip, chunk_id, in cinepak_decode_strip()