Lines Matching defs:headers
41 /** maximum number of adjacent headers that compare CRCs against each other */
43 /** minimum number of headers buffered and checked before returning frames */
86 FLACHeaderMarker *headers; /**< linked-list that starts at the first
89 int nb_headers_found; /**< number of headers found in the last
91 int nb_headers_buffered; /**< number of headers that are buffered */
94 FifoBuffer fifo_buf; /**< buffer to store all data until headers
324 FLACHeaderMarker **end_handle = &fpc->headers;
415 /* Return the size even if no new headers were found. */
416 if (!size && fpc->headers)
417 for (end = fpc->headers; end; end = end->next)
494 /* If we have suspicious headers, check the CRC between them */
582 changes between the headers. */
605 for (curr = fpc->headers; curr; curr = curr->next)
609 for (curr = fpc->headers; curr; curr = curr->next) {
693 /* Remove headers in list until the end of the best_header. */
694 for (curr = fpc->headers; curr != best_child; curr = temp) {
707 /* Fix the offset for the headers remaining to match the new buffer. */
712 fpc->headers = best_child;
722 for (curr = fpc->headers; curr != fpc->best_header; curr = temp) {
727 fpc->headers = fpc->best_header->next;
732 /* Find and score new headers. */
741 /* Pad the end once if EOF, to check the final region for headers. */
756 /* There is less than one valid flac header buffered for 20 headers
775 /* Tag headers and update sequences. */
798 /* If headers found, update the scores since we have longer chains. */
817 for (curr = fpc->headers; curr; curr = curr->next) {
875 FLACHeaderMarker *curr = fpc->headers, *temp;
882 fpc->headers = NULL;