Lines Matching refs:buffer
51 uint8_t *buffer;
113 start = pc->buffer + offset;
145 memmove(pc->buffer, pc->buffer + pc->overread_index,
149 if (*buf_size == 0 && pc->buffer[4] == 0x10) {
150 *buf = pc->buffer;
159 av_fast_realloc(pc->buffer, &pc->buffer_size,
163 pc->buffer = new_buffer;
164 memcpy(pc->buffer + pc->index, (*buf + pc->sync_offset),
171 void *new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size,
175 pc->buffer = new_buffer;
176 memcpy(pc->buffer + pc->index, *buf, next);
200 pc->dirac_unit = pc->buffer + pc->index - 13 -
213 uint8_t *cur_pu = pc->buffer +
256 /* No frame start found yet. So throw away the entire buffer. */
273 av_freep(&pc->buffer);