Lines Matching defs:in_buf
70 const uint8_t *in_buf = frame->data[0] + frame->linesize[0] * j;
71 const uint8_t *const line_end = in_buf + bytes_pixel * width;
72 while (in_buf < line_end) {
77 pixel = *in_buf;
78 while (count < 255 && in_buf < line_end && pixel == *in_buf) {
80 in_buf++;
85 pixel = AV_RB24(in_buf);
86 while (count < 255 && in_buf < line_end &&
87 pixel == AV_RB24(in_buf)) {
89 in_buf += 3;