Lines Matching defs:encode_buf
99 uint8_t *in_buf, *encode_buf;
199 if (!(encode_buf = av_malloc(width * bytes_per_channel)))
210 encode_buf[x] = in_buf[depth * x];
212 encode_buf[x + 1] = in_buf[depth * x];
213 encode_buf[x] = in_buf[depth * x + 1];
215 encode_buf[x] = in_buf[depth * x];
216 encode_buf[x + 1] = in_buf[depth * x + 1];
219 length = sgi_rle_encode(&pbc, encode_buf, width,
222 av_free(encode_buf);
231 av_free(encode_buf);