Lines Matching defs:frame_size_58
1737 int frame_size_58, pad_bytes, crc1, crc2_partial, crc2, crc_inv;
1740 frame_size_58 = ((s->frame_size >> 2) + (s->frame_size >> 4)) << 1;
1757 crc1 = av_bswap16(av_crc(crc_ctx, 0, frame + 4, frame_size_58 - 4));
1763 crc2_partial = av_crc(crc_ctx, 0, frame + frame_size_58,
1764 s->frame_size - frame_size_58 - 3);
2568 int ret, frame_size_58;
2589 frame_size_58 = (( s->frame_size >> 2) + ( s->frame_size >> 4)) << 1;
2590 s->crc_inv[0] = pow_poly((CRC16_POLY >> 1), (8 * frame_size_58) - 16, CRC16_POLY);
2592 frame_size_58 = (((s->frame_size+2) >> 2) + ((s->frame_size+2) >> 4)) << 1;
2593 s->crc_inv[1] = pow_poly((CRC16_POLY >> 1), (8 * frame_size_58) - 16, CRC16_POLY);