diff options
author | James Buren <braewoods+rb@braewoods.net> | 2021-06-21 03:37:17 +0000 |
---|---|---|
committer | James Buren <braewoods+rb@braewoods.net> | 2021-06-21 03:37:17 +0000 |
commit | fc9208108052440ccde79b6cd33e3598e8fb7c26 (patch) | |
tree | cf3c54cd5ca8bfb75596dee27f117b55adc748b2 /apps/plugin.h | |
parent | 2ca5774cf9613b0f2c1d31d6054911b8cb36e131 (diff) |
rockbox: add a crc32 reverse polynomial function
This uses the reverse of the polynomial used by the current crc_32
function. The code for this was derived from the implementation used
by tinf. This version is space optimized and should be a good way to
reduce code duplication in other parts of rockbox that use the same
crc32 algorithm. This is mainly of use in areas where DEFLATE is in
use.
Change-Id: I918da5b4ea4dc441c0e7e6b5007abcc2da463bcb
Diffstat (limited to 'apps/plugin.h')
-rw-r--r-- | apps/plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 394a4dbbfd..64ced00bfa 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -919,6 +919,7 @@ struct plugin_api { #ifdef PLUGIN_USE_IRAM void (*audio_hard_stop)(void); #endif + uint32_t (*crc_32r)(const void *src, uint32_t len, uint32_t crc32); /* new stuff at the end, sort into place next time the API gets incompatible */ |