Home | History | Annotate | Download | only in src

Lines Matching refs:crc

122  * @brief    updates crc data register
125 * This function updates the crc register
128 static void crcAdvance(USHORT crcPoly, USHORT crcMask, USHORT *crc,
134 flag = ((*crc) & crcMask) ? (1) : (0);
137 (*crc) <<= 1;
138 if (flag) (*crc) ^= crcPoly;
146 * @brief Inittialisation of sbr bitstream, write of dummy header and CRC
168 if (sbrSyntaxFlags & SBR_SYNTAX_DRM_CRC) { /* Init and start CRC region */
187 * Also the CRC will be calculated here.
204 * Calculate and write DRM CRC
233 calculate crc
250 * Write CRC data.