/third_party/ffmpeg/libavformat/ |
D | ac3dec.c | 75 if (av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf3 + 2, frame_size - 2)) in ac3_eac3_probe() 78 if (av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf2 + 2, frame_size - 2)) in ac3_eac3_probe()
|
D | apngenc.c | 64 const AVCRC *crc_table = av_crc_get_table(AV_CRC_32_IEEE_LE); in apng_write_chunk() 209 …AV_WB32(existing_fcTL_chunk + 26, ~av_crc(av_crc_get_table(AV_CRC_32_IEEE_LE), ~0U, existing_fcTL_… in flush_packet()
|
D | dtsdec.c | 75 if (av_crc(av_crc_get_table(AV_CRC_16_CCITT), 0xffff, buf + 3, hdr_size - 5)) in dts_probe()
|
D | takdec.c | 50 return av_crc(av_crc_get_table(AV_CRC_24_IEEE), checksum, buf, len); in tak_check_crc()
|
D | mp3enc.c | 362 mp3->audio_crc = av_crc(av_crc_get_table(AV_CRC_16_ANSI_LE), in mp3_write_audio_packet() 462 tag_crc = av_crc(av_crc_get_table(AV_CRC_16_ANSI_LE), 0, mp3->xing_frame, 190); in mp3_update_xing()
|
D | aviobuf.c | 589 return av_crc(av_crc_get_table(AV_CRC_32_IEEE), checksum, buf, len); in ff_crc04C11DB7_update() 595 return av_crc(av_crc_get_table(AV_CRC_32_IEEE_LE), checksum, buf, len); in ff_crcEDB88320_update() 601 return av_crc(av_crc_get_table(AV_CRC_16_ANSI_LE), checksum, buf, len); in ff_crcA001_update()
|
/third_party/ffmpeg/libavutil/tests/ |
D | crc.c | 43 ctx = av_crc_get_table(p[i][0]); in main()
|
/third_party/ffmpeg/libavutil/ |
D | crc.h | 84 const AVCRC *av_crc_get_table(AVCRCId crc_id);
|
D | lfg.c | 73 …avcrc = av_crc_get_table(AV_CRC_32_IEEE); /* This can't fail. It's a well-defined table in crc.c */ in av_lfg_init_from_data()
|
D | crc.c | 374 const AVCRC *av_crc_get_table(AVCRCId crc_id) in av_crc_get_table() function
|
D | hash.c | 128 case CRC32: res->crctab = av_crc_get_table(AV_CRC_32_IEEE_LE); break; in av_hash_alloc()
|
/third_party/ffmpeg/libavfilter/x86/ |
D | vf_spp.c | 229 av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, in ff_spp_init_x86()
|
/third_party/ffmpeg/libavcodec/ |
D | tak.c | 86 crc = av_crc(av_crc_get_table(AV_CRC_24_IEEE), 0xCE04B7U, buf, buf_size); in ff_tak_check_crc()
|
D | flac.c | 138 if (av_crc(av_crc_get_table(AV_CRC_8_ATM), 0, gb->buffer, in ff_flac_decode_frame_header()
|
D | ttaenc.c | 40 s->crc_table = av_crc_get_table(AV_CRC_32_IEEE_LE); in tta_encode_init()
|
D | flac_parser.c | 384 crc = av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf, read_len); in check_header_mismatch() 389 crc = av_crc(av_crc_get_table(AV_CRC_16_ANSI), crc, buf, read_len); in check_header_mismatch()
|
D | pngenc.c | 227 const AVCRC *crc_table = av_crc_get_table(AV_CRC_32_IEEE_LE); in png_write_chunk() 247 const AVCRC *crc_table = av_crc_get_table(AV_CRC_32_IEEE_LE); in png_write_image_data() 851 …uint32_t checksum = ~av_crc(av_crc_get_table(AV_CRC_32_IEEE_LE), ~0U, pict->data[1], 256 * sizeof(… in encode_apng()
|
D | sbcenc.c | 266 frame->crc_ctx = av_crc_get_table(AV_CRC_8_EBU); in sbc_encode_init()
|
D | dcadec.c | 344 s->crctab = av_crc_get_table(AV_CRC_16_CCITT); in dcadec_init()
|
D | sbcdec.c | 329 sbc->frame.crc_ctx = av_crc_get_table(AV_CRC_8_EBU); in sbc_decode_init()
|
D | tta.c | 136 s->crc_table = av_crc_get_table(AV_CRC_32_IEEE_LE); in tta_decode_init()
|
D | hcadec.c | 115 c->crc_table = av_crc_get_table(AV_CRC_16_ANSI); in decode_init()
|
D | ffv1dec.c | 500 v = av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, in read_extra_header() 903 unsigned crc = av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, buf_p, v); in decode_frame()
|
D | flacdec.c | 612 av_crc(av_crc_get_table(AV_CRC_16_ANSI), in flac_decode_frame()
|
/third_party/ffmpeg/libswscale/tests/ |
D | swscale.c | 186 crc = av_crc(av_crc_get_table(AV_CRC_32_IEEE), crc, dst[i], in doTest()
|