Lines Matching full:fifo
279 verify_input_fifo *fifo,
287 verify_input_fifo *fifo,
1115 * First, set up the fifo which will hold the
4340 void append_to_verify_fifo_(verify_input_fifo *fifo, const FLAC__int32 * const input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
4345 memcpy(&fifo->data[channel][fifo->tail], &input[channel][input_offset], sizeof(FLAC__int32) * wide_samples);
4347 fifo->tail += wide_samples;
4349 FLAC__ASSERT(fifo->tail <= fifo->size);
4352 fifo, const FLAC__int32 input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
4356 unsigned tail = fifo->tail;
4361 fifo->data[channel][tail] = input[sample++];
4364 fifo->tail = tail;
4366 FLAC__ASSERT(fifo->tail <= fifo->size);
4384 * If we get here, a FIFO underflow has occurred,
4435 /* dequeue the frame from the fifo */