diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2017-12-20 01:29:05 +0100 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2018-03-07 22:26:53 +0100 |
commit | 0b4ad86959cdd5c53474faf2c0b46e0f8a057fe1 (patch) | |
tree | 263ff84d435370b05a222aabe4850527f4abbbaf /libavutil/crc.h | |
parent | ea0963181a2cc8e42a0c58da96fb7fed5e857e5b (diff) | |
download | ffmpeg-0b4ad86959cdd5c53474faf2c0b46e0f8a057fe1.tar.gz |
crc: add AV_CRC_8_SBC as a 8 bits CRC with polynomial 0x1D
Diffstat (limited to 'libavutil/crc.h')
-rw-r--r-- | libavutil/crc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/crc.h b/libavutil/crc.h index fe9a7c8fcb..47e22b4c78 100644 --- a/libavutil/crc.h +++ b/libavutil/crc.h @@ -54,6 +54,7 @@ typedef enum { AV_CRC_32_IEEE_LE, /*< reversed bitorder version of AV_CRC_32_IEEE */ AV_CRC_16_ANSI_LE, /*< reversed bitorder version of AV_CRC_16_ANSI */ AV_CRC_24_IEEE, + AV_CRC_8_EBU, AV_CRC_MAX, /*< Not part of public API! Do not use outside libavutil. */ }AVCRCId; |