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.

163 lines
4.2KB

  1. /*
  2. * Range coder
  3. * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 "libavutil/attributes.h"
  34. #include "libavutil/avassert.h"
  35. #include "libavutil/intreadwrite.h"
  36. #include "avcodec.h"
  37. #include "rangecoder.h"
  38. av_cold void ff_init_range_encoder(RangeCoder *c, uint8_t *buf, int buf_size)
  39. {
  40. c->bytestream_start =
  41. c->bytestream = buf;
  42. c->bytestream_end = buf + buf_size;
  43. c->low = 0;
  44. c->range = 0xFF00;
  45. c->outstanding_count = 0;
  46. c->outstanding_byte = -1;
  47. }
  48. av_cold void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf,
  49. int buf_size)
  50. {
  51. /* cast to avoid compiler warning */
  52. ff_init_range_encoder(c, (uint8_t *)buf, buf_size);
  53. c->low = AV_RB16(c->bytestream);
  54. c->bytestream += 2;
  55. }
  56. void ff_build_rac_states(RangeCoder *c, int factor, int max_p)
  57. {
  58. const int64_t one = 1LL << 32;
  59. int64_t p;
  60. int last_p8, p8, i;
  61. memset(c->zero_state, 0, sizeof(c->zero_state));
  62. memset(c->one_state, 0, sizeof(c->one_state));
  63. last_p8 = 0;
  64. p = one / 2;
  65. for (i = 0; i < 128; i++) {
  66. p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
  67. if (p8 <= last_p8)
  68. p8 = last_p8 + 1;
  69. if (last_p8 && last_p8 < 256 && p8 <= max_p)
  70. c->one_state[last_p8] = p8;
  71. p += ((one - p) * factor + one / 2) >> 32;
  72. last_p8 = p8;
  73. }
  74. for (i = 256 - max_p; i <= max_p; i++) {
  75. if (c->one_state[i])
  76. continue;
  77. p = (i * one + 128) >> 8;
  78. p += ((one - p) * factor + one / 2) >> 32;
  79. p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
  80. if (p8 <= i)
  81. p8 = i + 1;
  82. if (p8 > max_p)
  83. p8 = max_p;
  84. c->one_state[i] = p8;
  85. }
  86. for (i = 1; i < 255; i++)
  87. c->zero_state[i] = 256 - c->one_state[256 - i];
  88. }
  89. /* Return the number of bytes written. */
  90. int ff_rac_terminate(RangeCoder *c)
  91. {
  92. c->range = 0xFF;
  93. c->low += 0xFF;
  94. renorm_encoder(c);
  95. c->range = 0xFF;
  96. renorm_encoder(c);
  97. av_assert1(c->low == 0);
  98. av_assert1(c->range >= 0x100);
  99. return c->bytestream - c->bytestream_start;
  100. }
  101. #ifdef TEST
  102. #define SIZE 10240
  103. #include "libavutil/lfg.h"
  104. #include "libavutil/log.h"
  105. static uint8_t b[9 * SIZE];
  106. static uint8_t r[9 * SIZE];
  107. int main(void)
  108. {
  109. RangeCoder c;
  110. int i;
  111. uint8_t state[10];
  112. AVLFG prng;
  113. av_lfg_init(&prng, 1);
  114. ff_init_range_encoder(&c, b, SIZE);
  115. ff_build_rac_states(&c, (1LL << 32) / 20, 128 + 64 + 32 + 16);
  116. memset(state, 128, sizeof(state));
  117. for (i = 0; i < SIZE; i++)
  118. r[i] = av_lfg_get(&prng) % 7;
  119. for (i = 0; i < SIZE; i++)
  120. put_rac(&c, state, r[i] & 1);
  121. ff_rac_terminate(&c);
  122. ff_init_range_decoder(&c, b, SIZE);
  123. memset(state, 128, sizeof(state));
  124. for (i = 0; i < SIZE; i++)
  125. if ((r[i] & 1) != get_rac(&c, state)) {
  126. av_log(NULL, AV_LOG_ERROR, "rac failure at %d\n", i);
  127. return 1;
  128. }
  129. return 0;
  130. }
  131. #endif /* TEST */