Lines Matching refs:startcode
91 int calculate_checksum, uint64_t startcode)
95 startcode = av_be2ne64(startcode);
96 startcode = ff_crc04C11DB7_update(0, (uint8_t*) &startcode, 8);
98 ffio_init_checksum(bc, ff_crc04C11DB7_update, startcode);
136 * Find the given startcode.
137 * @param code the startcode
139 * @return the position of the startcode or -1 if not found
144 uint64_t startcode = find_any_startcode(bc, pos);
145 if (startcode == code)
147 else if (startcode == 0)
828 av_log(s, AV_LOG_ERROR, "No main startcode found.\n");
848 uint64_t startcode = find_any_startcode(bc, pos);
851 if (startcode == 0) {
854 } else if (startcode == SYNCPOINT_STARTCODE) {
855 nut->next_startcode = startcode;
857 } else if (startcode != INFO_STARTCODE) {