Home
last modified time | relevance | path

Searched refs:obu_payload_length (Results 1 – 1 of 1) sorted by relevance

/external/libaom/libaom/common/
Dobudec.c227 size_t obu_payload_length = 0; in obudec_read_one_obu() local
242 &bytes_read, &obu_payload_length, obu_header); in obudec_read_one_obu()
245 if (obu_payload_length > SIZE_MAX - bytes_read) return -1; in obudec_read_one_obu()
247 if (obu_payload_length > 256 * 1024 * 1024) { in obudec_read_one_obu()
249 (unsigned int)obu_payload_length); in obudec_read_one_obu()
250 *obu_length = bytes_read + obu_payload_length; in obudec_read_one_obu()
254 if (bytes_read + obu_payload_length > available_buffer_capacity && in obudec_read_one_obu()
255 obudec_grow_buffer(AOMMAX(*obu_buffer_capacity, obu_payload_length), in obudec_read_one_obu()
257 *obu_length = bytes_read + obu_payload_length; in obudec_read_one_obu()
261 if (obu_payload_length > 0 && in obudec_read_one_obu()
[all …]