| 573 | ***************************************************************************/ |
| 574 | |
| 575 | static unsigned crc32(const uint8_t *data, unsigned size) |
| 576 | { |
| 577 | return av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, data, size); |
| 578 | } |
| 579 | |
| 580 | static void run_implementation(const uint8_t *input, uint8_t *output, |
| 581 | struct hash_impl *impl, unsigned size) |
no test coverage detected