Searched refs:obu_data (Results 1 – 1 of 1) sorted by relevance
/external/libaom/libaom/common/ |
D | obudec.c | 70 int is_annexb, uint8_t *obu_data, in obudec_read_obu_header() argument 73 !obu_data || !obu_header || !bytes_read) { in obudec_read_obu_header() 76 *bytes_read = fread(obu_data, 1, 1, f); in obudec_read_obu_header() 85 const int has_extension = (obu_data[0] >> 2) & 0x1; in obudec_read_obu_header() 87 if (fread(&obu_data[1], 1, 1, f) != 1) { in obudec_read_obu_header() 96 obu_data, *bytes_read, &obu_bytes_parsed, obu_header, is_annexb); in obudec_read_obu_header() 109 uint8_t *obu_data, size_t *bytes_read) { in obudec_read_obu_payload() argument 110 if (!f || payload_length == 0 || !obu_data || !bytes_read) return -1; in obudec_read_obu_payload() 112 if (fread(obu_data, 1, payload_length, f) != payload_length) { in obudec_read_obu_payload()
|