Lines Matching defs:stream_ptr
42 if ((stream_ptr + n) > s->size ) { \
43 av_log(s->avctx, AV_LOG_ERROR, " MS Video-1 warning: stream_ptr out of bounds (%d >= %d)\n", \
44 stream_ptr + n, s->size); \
99 int stream_ptr;
107 stream_ptr = 0;
130 byte_a = s->buf[stream_ptr++];
131 byte_b = s->buf[stream_ptr++];
144 colors[0] = s->buf[stream_ptr++];
145 colors[1] = s->buf[stream_ptr++];
157 memcpy(colors, &s->buf[stream_ptr], 8);
158 stream_ptr += 8;
199 int stream_ptr;
207 stream_ptr = 0;
230 byte_a = s->buf[stream_ptr++];
231 byte_b = s->buf[stream_ptr++];
244 colors[0] = AV_RL16(&s->buf[stream_ptr]);
245 stream_ptr += 2;
246 colors[1] = AV_RL16(&s->buf[stream_ptr]);
247 stream_ptr += 2;
252 colors[2] = AV_RL16(&s->buf[stream_ptr]);
253 stream_ptr += 2;
254 colors[3] = AV_RL16(&s->buf[stream_ptr]);
255 stream_ptr += 2;
256 colors[4] = AV_RL16(&s->buf[stream_ptr]);
257 stream_ptr += 2;
258 colors[5] = AV_RL16(&s->buf[stream_ptr]);
259 stream_ptr += 2;
260 colors[6] = AV_RL16(&s->buf[stream_ptr]);
261 stream_ptr += 2;
262 colors[7] = AV_RL16(&s->buf[stream_ptr]);
263 stream_ptr += 2;