Searched refs:prev_timestamp (Results 1 – 4 of 4) sorted by relevance
73 prev_timestamp = 084 if sample_timestamp < prev_timestamp:86 prev_timestamp = entry_timestamp88 if prev_timestamp == 0:
352 int64_t prev_timestamp = 0; in main() local391 prev_timestamp, cur_timestamp); in main()396 aom_film_grain_table_append(&grain_table, prev_timestamp, cur_timestamp, in main()399 prev_timestamp = cur_timestamp; in main()413 aom_film_grain_table_append(&grain_table, prev_timestamp, INT64_MAX, &grain); in main()
744 inline bool IsNewerTimestamp(uint32_t timestamp, uint32_t prev_timestamp) { in IsNewerTimestamp() argument749 if (static_cast<uint32_t>(timestamp - prev_timestamp) == 0x80000000) { in IsNewerTimestamp()750 return timestamp > prev_timestamp; in IsNewerTimestamp()752 return timestamp != prev_timestamp && in IsNewerTimestamp()753 static_cast<uint32_t>(timestamp - prev_timestamp) < 0x80000000; in IsNewerTimestamp()
1847 uint32_t prev_timestamp = 0; in ExtractPackets() local1887 prev_timestamp = packet->header.timestamp; in ExtractPackets()1926 size_t ts_diff = header->timestamp - prev_timestamp; in ExtractPackets()