Searched refs:len_section (Results 1 – 1 of 1) sorted by relevance
71 int64_t len_section; in decode_header() local155 len_section = bytestream2_get_be32(&s->gb); in decode_header()156 if (len_section < 0) { in decode_header()161 if (bytestream2_get_bytes_left(&s->gb) < (len_section + 4)) { /* section and len next section */ in decode_header()165 if (len_section) { in decode_header()169 for (i = 0; i < FFMIN(256, len_section / 3); i++) in decode_header()171 len_section -= i * 3; in decode_header()173 bytestream2_skip(&s->gb, len_section); in decode_header()176 len_section = bytestream2_get_be32(&s->gb); in decode_header()177 if (len_section < 0) { in decode_header()[all …]