Searched refs:frame_size_58 (Results 1 - 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | ac3enc.c | 1737 int frame_size_58, pad_bytes, crc1, crc2_partial, crc2, crc_inv; in output_frame_end() local 1740 frame_size_58 = ((s->frame_size >> 2) + (s->frame_size >> 4)) << 1; in output_frame_end() 1757 crc1 = av_bswap16(av_crc(crc_ctx, 0, frame + 4, frame_size_58 - 4)); in output_frame_end() 1763 crc2_partial = av_crc(crc_ctx, 0, frame + frame_size_58, in output_frame_end() 1764 s->frame_size - frame_size_58 - 3); in output_frame_end() 2568 int ret, frame_size_58; in ff_ac3_encode_init() local 2589 frame_size_58 = (( s->frame_size >> 2) + ( s->frame_size >> 4)) << 1; in ff_ac3_encode_init() 2590 s->crc_inv[0] = pow_poly((CRC16_POLY >> 1), (8 * frame_size_58) - 16, CRC16_POLY); in ff_ac3_encode_init() 2592 frame_size_58 = (((s->frame_size+2) >> 2) + ((s->frame_size+2) >> 4)) << 1; in ff_ac3_encode_init() 2593 s->crc_inv[1] = pow_poly((CRC16_POLY >> 1), (8 * frame_size_58) in ff_ac3_encode_init() [all...] |
Completed in 4 milliseconds