Lines Matching refs:stream_ptr
40 if ((stream_ptr + n) > s->size ) { \
42 stream_ptr + n, s->size); \
97 int stream_ptr; in msvideo1_decode_8bit() local
105 stream_ptr = 0; in msvideo1_decode_8bit()
128 byte_a = s->buf[stream_ptr++]; in msvideo1_decode_8bit()
129 byte_b = s->buf[stream_ptr++]; in msvideo1_decode_8bit()
142 colors[0] = s->buf[stream_ptr++]; in msvideo1_decode_8bit()
143 colors[1] = s->buf[stream_ptr++]; in msvideo1_decode_8bit()
155 memcpy(colors, &s->buf[stream_ptr], 8); in msvideo1_decode_8bit()
156 stream_ptr += 8; in msvideo1_decode_8bit()
197 int stream_ptr; in msvideo1_decode_16bit() local
205 stream_ptr = 0; in msvideo1_decode_16bit()
228 byte_a = s->buf[stream_ptr++]; in msvideo1_decode_16bit()
229 byte_b = s->buf[stream_ptr++]; in msvideo1_decode_16bit()
242 colors[0] = AV_RL16(&s->buf[stream_ptr]); in msvideo1_decode_16bit()
243 stream_ptr += 2; in msvideo1_decode_16bit()
244 colors[1] = AV_RL16(&s->buf[stream_ptr]); in msvideo1_decode_16bit()
245 stream_ptr += 2; in msvideo1_decode_16bit()
250 colors[2] = AV_RL16(&s->buf[stream_ptr]); in msvideo1_decode_16bit()
251 stream_ptr += 2; in msvideo1_decode_16bit()
252 colors[3] = AV_RL16(&s->buf[stream_ptr]); in msvideo1_decode_16bit()
253 stream_ptr += 2; in msvideo1_decode_16bit()
254 colors[4] = AV_RL16(&s->buf[stream_ptr]); in msvideo1_decode_16bit()
255 stream_ptr += 2; in msvideo1_decode_16bit()
256 colors[5] = AV_RL16(&s->buf[stream_ptr]); in msvideo1_decode_16bit()
257 stream_ptr += 2; in msvideo1_decode_16bit()
258 colors[6] = AV_RL16(&s->buf[stream_ptr]); in msvideo1_decode_16bit()
259 stream_ptr += 2; in msvideo1_decode_16bit()
260 colors[7] = AV_RL16(&s->buf[stream_ptr]); in msvideo1_decode_16bit()
261 stream_ptr += 2; in msvideo1_decode_16bit()