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.

157 lines
4.0KB

  1. /*
  2. * Range coder
  3. * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Range coder.
  24. * based upon
  25. * "Range encoding: an algorithm for removing redundancy from a digitised
  26. * message.
  27. * G. N. N. Martin Presented in March 1979 to the Video &
  28. * Data Recording Conference,
  29. * IBM UK Scientific Center held in Southampton July 24-27 1979."
  30. *
  31. */
  32. #include <string.h>
  33. #include "avcodec.h"
  34. #include "rangecoder.h"
  35. #include "bytestream.h"
  36. void ff_init_range_encoder(RangeCoder *c, uint8_t *buf, int buf_size)
  37. {
  38. c->bytestream_start =
  39. c->bytestream = buf;
  40. c->bytestream_end = buf + buf_size;
  41. c->low = 0;
  42. c->range = 0xFF00;
  43. c->outstanding_count = 0;
  44. c->outstanding_byte = -1;
  45. }
  46. void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf, int buf_size)
  47. {
  48. /* cast to avoid compiler warning */
  49. ff_init_range_encoder(c, (uint8_t *)buf, buf_size);
  50. c->low = bytestream_get_be16(&c->bytestream);
  51. }
  52. void ff_build_rac_states(RangeCoder *c, int factor, int max_p)
  53. {
  54. const int64_t one = 1LL << 32;
  55. int64_t p;
  56. int last_p8, p8, i;
  57. memset(c->zero_state, 0, sizeof(c->zero_state));
  58. memset(c->one_state, 0, sizeof(c->one_state));
  59. last_p8 = 0;
  60. p = one / 2;
  61. for (i = 0; i < 128; i++) {
  62. p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
  63. if (p8 <= last_p8)
  64. p8 = last_p8 + 1;
  65. if (last_p8 && last_p8 < 256 && p8 <= max_p)
  66. c->one_state[last_p8] = p8;
  67. p += ((one - p) * factor + one / 2) >> 32;
  68. last_p8 = p8;
  69. }
  70. for (i = 256 - max_p; i <= max_p; i++) {
  71. if (c->one_state[i])
  72. continue;
  73. p = (i * one + 128) >> 8;
  74. p += ((one - p) * factor + one / 2) >> 32;
  75. p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
  76. if (p8 <= i)
  77. p8 = i + 1;
  78. if (p8 > max_p)
  79. p8 = max_p;
  80. c->one_state[i] = p8;
  81. }
  82. for (i = 1; i < 255; i++)
  83. c->zero_state[i] = 256 - c->one_state[256 - i];
  84. }
  85. /* Return the number of bytes written. */
  86. int ff_rac_terminate(RangeCoder *c)
  87. {
  88. c->range = 0xFF;
  89. c->low += 0xFF;
  90. renorm_encoder(c);
  91. c->range = 0xFF;
  92. renorm_encoder(c);
  93. assert(c->low == 0);
  94. assert(c->range >= 0x100);
  95. return c->bytestream - c->bytestream_start;
  96. }
  97. #ifdef TEST
  98. #define SIZE 10240
  99. #include "libavutil/lfg.h"
  100. #include "libavutil/log.h"
  101. int main(void)
  102. {
  103. RangeCoder c;
  104. uint8_t b[9 * SIZE];
  105. uint8_t r[9 * SIZE];
  106. int i;
  107. uint8_t state[10];
  108. AVLFG prng;
  109. av_lfg_init(&prng, 1);
  110. ff_init_range_encoder(&c, b, SIZE);
  111. ff_build_rac_states(&c, 0.05 * (1LL << 32), 128 + 64 + 32 + 16);
  112. memset(state, 128, sizeof(state));
  113. for (i = 0; i < SIZE; i++)
  114. r[i] = av_lfg_get(&prng) % 7;
  115. for (i = 0; i < SIZE; i++)
  116. put_rac(&c, state, r[i] & 1);
  117. ff_rac_terminate(&c);
  118. ff_init_range_decoder(&c, b, SIZE);
  119. memset(state, 128, sizeof(state));
  120. for (i = 0; i < SIZE; i++)
  121. if ((r[i] & 1) != get_rac(&c, state)) {
  122. av_log(NULL, AV_LOG_ERROR, "rac failure at %d\n", i);
  123. return 1;
  124. }
  125. return 0;
  126. }
  127. #endif /* TEST */