adler32.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * Compute the Adler-32 checksum of a data stream.
  3. * This is a modified version based on adler32.c from the zlib library.
  4. *
  5. * Copyright (C) 1995 Mark Adler
  6. *
  7. * This software is provided 'as-is', without any express or implied
  8. * warranty. In no event will the authors be held liable for any damages
  9. * arising from the use of this software.
  10. *
  11. * Permission is granted to anyone to use this software for any purpose,
  12. * including commercial applications, and to alter it and redistribute it
  13. * freely, subject to the following restrictions:
  14. *
  15. * 1. The origin of this software must not be misrepresented; you must not
  16. * claim that you wrote the original software. If you use this software
  17. * in a product, an acknowledgment in the product documentation would be
  18. * appreciated but is not required.
  19. * 2. Altered source versions must be plainly marked as such, and must not be
  20. * misrepresented as being the original software.
  21. * 3. This notice may not be removed or altered from any source distribution.
  22. */
  23. #include "config.h"
  24. #include "adler32.h"
  25. #include "common.h"
  26. #include "intreadwrite.h"
  27. #define BASE 65521L /* largest prime smaller than 65536 */
  28. #define DO1(buf) { s1 += *buf++; s2 += s1; }
  29. #define DO4(buf) DO1(buf); DO1(buf); DO1(buf); DO1(buf);
  30. #define DO16(buf) DO4(buf); DO4(buf); DO4(buf); DO4(buf);
  31. unsigned long av_adler32_update(unsigned long adler, const uint8_t * buf,
  32. unsigned int len)
  33. {
  34. unsigned long s1 = adler & 0xffff;
  35. unsigned long s2 = adler >> 16;
  36. while (len > 0) {
  37. #if HAVE_FAST_64BIT && HAVE_FAST_UNALIGNED && !CONFIG_SMALL
  38. unsigned len2 = FFMIN((len-1) & ~7, 23*8);
  39. if (len2) {
  40. uint64_t a1= 0;
  41. uint64_t a2= 0;
  42. uint64_t b1= 0;
  43. uint64_t b2= 0;
  44. len -= len2;
  45. s2 += s1*len2;
  46. while (len2 >= 8) {
  47. uint64_t v = AV_RN64(buf);
  48. a2 += a1;
  49. b2 += b1;
  50. a1 += v &0x00FF00FF00FF00FF;
  51. b1 += (v>>8)&0x00FF00FF00FF00FF;
  52. len2 -= 8;
  53. buf+=8;
  54. }
  55. //We combine the 8 interleaved adler32 checksums without overflows
  56. //Decreasing the number of iterations would allow below code to be
  57. //simplified but would likely be slower due to the fewer iterations
  58. //of the inner loop
  59. s1 += ((a1+b1)*0x1000100010001)>>48;
  60. s2 += ((((a2&0xFFFF0000FFFF)+(b2&0xFFFF0000FFFF)+((a2>>16)&0xFFFF0000FFFF)+((b2>>16)&0xFFFF0000FFFF))*0x800000008)>>32)
  61. #if HAVE_BIGENDIAN
  62. + 2*((b1*0x1000200030004)>>48)
  63. + ((a1*0x1000100010001)>>48)
  64. + 2*((a1*0x0000100020003)>>48);
  65. #else
  66. + 2*((a1*0x4000300020001)>>48)
  67. + ((b1*0x1000100010001)>>48)
  68. + 2*((b1*0x3000200010000)>>48);
  69. #endif
  70. }
  71. #else
  72. while (len > 4 && s2 < (1U << 31)) {
  73. DO4(buf);
  74. len -= 4;
  75. }
  76. #endif
  77. DO1(buf); len--;
  78. s1 %= BASE;
  79. s2 %= BASE;
  80. }
  81. return (s2 << 16) | s1;
  82. }
  83. #ifdef TEST
  84. // LCOV_EXCL_START
  85. #include <string.h>
  86. #include "log.h"
  87. #include "timer.h"
  88. #define LEN 7001
  89. static volatile int checksum;
  90. int main(int argc, char **argv)
  91. {
  92. int i;
  93. char data[LEN];
  94. av_log_set_level(AV_LOG_DEBUG);
  95. for (i = 0; i < LEN; i++)
  96. data[i] = ((i * i) >> 3) + 123 * i;
  97. if (argc > 1 && !strcmp(argv[1], "-t")) {
  98. for (i = 0; i < 1000; i++) {
  99. START_TIMER;
  100. checksum = av_adler32_update(1, data, LEN);
  101. STOP_TIMER("adler");
  102. }
  103. } else {
  104. checksum = av_adler32_update(1, data, LEN);
  105. }
  106. av_log(NULL, AV_LOG_DEBUG, "%X (expected 50E6E508)\n", checksum);
  107. return checksum == 0x50e6e508 ? 0 : 1;
  108. }
  109. // LCOV_EXCL_STOP
  110. #endif