You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
2.0KB

  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. /**
  24. * @file
  25. * Computes the Adler-32 checksum of a data stream
  26. *
  27. * This is a modified version based on adler32.c from the zlib library.
  28. * @author Mark Adler
  29. * @ingroup lavu_adler32
  30. */
  31. #include "config.h"
  32. #include "adler32.h"
  33. #define BASE 65521L /* largest prime smaller than 65536 */
  34. #define DO1(buf) { s1 += *buf++; s2 += s1; }
  35. #define DO4(buf) DO1(buf); DO1(buf); DO1(buf); DO1(buf);
  36. #define DO16(buf) DO4(buf); DO4(buf); DO4(buf); DO4(buf);
  37. unsigned long av_adler32_update(unsigned long adler, const uint8_t * buf,
  38. unsigned int len)
  39. {
  40. unsigned long s1 = adler & 0xffff;
  41. unsigned long s2 = adler >> 16;
  42. while (len > 0) {
  43. #if CONFIG_SMALL
  44. while (len > 4 && s2 < (1U << 31)) {
  45. DO4(buf);
  46. len -= 4;
  47. }
  48. #else
  49. while (len > 16 && s2 < (1U << 31)) {
  50. DO16(buf);
  51. len -= 16;
  52. }
  53. #endif
  54. DO1(buf); len--;
  55. s1 %= BASE;
  56. s2 %= BASE;
  57. }
  58. return (s2 << 16) | s1;
  59. }