Re: [FFmpeg-devel] [PATCH 01/10] crc: add AV_CRC_8_SBC as a 8 bits CRC with polynomial 0x1D

2017-12-23 Thread Aurelien Jacobs
On Thu, Dec 21, 2017 at 02:12:26AM +0100, Michael Niedermayer wrote: > On Wed, Dec 20, 2017 at 08:58:05PM +0100, Aurelien Jacobs wrote: > > --- > > libavutil/crc.c | 26 ++ > > libavutil/crc.h | 1 + > > libavutil/tests/crc.c | 7 --- > > 3 files changed,

Re: [FFmpeg-devel] [PATCH 01/10] crc: add AV_CRC_8_SBC as a 8 bits CRC with polynomial 0x1D

2017-12-20 Thread Michael Niedermayer
On Wed, Dec 20, 2017 at 08:58:05PM +0100, Aurelien Jacobs wrote: > --- > libavutil/crc.c | 26 ++ > libavutil/crc.h | 1 + > libavutil/tests/crc.c | 7 --- > 3 files changed, 31 insertions(+), 3 deletions(-) This needs a update for tests/ref/fate/crc

[FFmpeg-devel] [PATCH 01/10] crc: add AV_CRC_8_SBC as a 8 bits CRC with polynomial 0x1D

2017-12-20 Thread Aurelien Jacobs
--- libavutil/crc.c | 26 ++ libavutil/crc.h | 1 + libavutil/tests/crc.c | 7 --- 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/libavutil/crc.c b/libavutil/crc.c index d44550c9c0..8e44a76ec8 100644 --- a/libavutil/crc.c +++