av_crc           1251 libavcodec/ac3dec.c         if(av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, &buf[2], s->frame_size-2)) {
av_crc           1129 libavcodec/ac3enc.c     crc1 = bswap_16(av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0,
av_crc           1136 libavcodec/ac3enc.c     crc2 = bswap_16(av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0,
av_crc            561 libavcodec/flacdec.c     crc8 = av_crc(av_crc_get_table(AV_CRC_8_ATM), 0,
av_crc           1105 libavcodec/flacenc.c     crc = av_crc(av_crc_get_table(AV_CRC_8_ATM), 0,
av_crc           1248 libavcodec/flacenc.c     crc = bswap_16(av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0,
av_crc             63 libavcodec/mlp.c     crc = av_crc(crc_2D, 0, buf, buf_size - 2);
av_crc             70 libavcodec/mlp.c     uint8_t checksum = av_crc(crc_63, 0x3c, buf, buf_size - 1); // crc_63[0xa2] == 0x3c
av_crc             81 libavcodec/mlp.c     crc = av_crc(crc_1D, crc, buf + 1, num_bytes - 2);
av_crc            338 libavformat/aviobuf.c     return av_crc(av_crc_get_table(AV_CRC_32_IEEE), checksum, buf, len);
av_crc            271 libavformat/mpegts.c             av_crc(av_crc_get_table(AV_CRC_32_IEEE), -1,
av_crc             75 libavformat/mpegtsenc.c     crc = bswap_32(av_crc(av_crc_get_table(AV_CRC_32_IEEE), -1, buf, len - 4));
av_crc            554 libavformat/raw.c                av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf2 + 2, hdr.frame_size - 2))
av_crc            149 libavutil/crc.c         printf("crc %08X =%X\n", p[i][1], av_crc(ctx, 0, buf, sizeof(buf)));
av_crc             41 libavutil/crc.h uint32_t av_crc(const AVCRC *ctx, uint32_t start_crc, const uint8_t *buffer, size_t length) av_pure;