Searched refs:frame_size_58 (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | ac3enc.c | 1682 int frame_size_58, pad_bytes, crc1, crc2_partial, crc2, crc_inv; in output_frame_end() local 1685 frame_size_58 = ((s->frame_size >> 2) + (s->frame_size >> 4)) << 1; in output_frame_end() 1702 crc1 = av_bswap16(av_crc(crc_ctx, 0, frame + 4, frame_size_58 - 4)); in output_frame_end() 1708 crc2_partial = av_crc(crc_ctx, 0, frame + frame_size_58, in output_frame_end() 1709 s->frame_size - frame_size_58 - 3); in output_frame_end() 2510 int ret, frame_size_58; in ff_ac3_encode_init() local 2531 frame_size_58 = (( s->frame_size >> 2) + ( s->frame_size >> 4)) << 1; in ff_ac3_encode_init() 2532 s->crc_inv[0] = pow_poly((CRC16_POLY >> 1), (8 * frame_size_58) - 16, CRC16_POLY); in ff_ac3_encode_init() 2534 frame_size_58 = (((s->frame_size+2) >> 2) + ((s->frame_size+2) >> 4)) << 1; in ff_ac3_encode_init() 2535 s->crc_inv[1] = pow_poly((CRC16_POLY >> 1), (8 * frame_size_58) - 16, CRC16_POLY); in ff_ac3_encode_init()
|