Files
flac/src/libFLAC/include/private/crc.h

46 lines
1.7 KiB
C
Raw Normal View History

2001-02-08 00:38:41 +00:00
/* libFLAC - Free Lossless Audio Codec library
2001-01-16 20:17:53 +00:00
* Copyright (C) 2000,2001 Josh Coalson
2000-12-10 04:09:52 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef FLAC__PRIVATE__CRC_H
#define FLAC__PRIVATE__CRC_H
#include "FLAC/ordinals.h"
/* 8 bit CRC generator, MSB shifted first
2001-03-27 01:14:25 +00:00
** polynomial = x^8 + x^2 + x^1 + x^0
** init = 0
2000-12-10 04:09:52 +00:00
*/
2001-03-27 01:14:25 +00:00
extern byte const FLAC__crc8_table[256];
#define FLAC__CRC8_UPDATE(data, crc) crc = FLAC__crc8_table[crc ^ data];
void FLAC__crc8_update(const byte data, uint8 *crc);
void FLAC__crc8_update_block(const byte *data, unsigned len, uint8 *crc);
uint8 FLAC__crc8(const byte *data, unsigned len);
/* 16 bit CRC generator, MSB shifted first
** polynomial = x^16 + x^15 + x^2 + x^0
** init = 0
*/
extern uint16 FLAC__crc16_table[256];
#define FLAC__CRC16_UPDATE(data, crc) crc = (crc<<8) ^ FLAC__crc16_table[(crc>>8) ^ data];
void FLAC__crc16_update(const byte data, uint16 *crc);
void FLAC__crc16_update_block(const byte *data, unsigned len, uint16 *crc);
uint16 FLAC__crc16(const byte *data, unsigned len);
2000-12-10 04:09:52 +00:00
#endif