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.

116 lines
3.3KB

  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. #include <string.h>
  32. #include "libavutil/attributes.h"
  33. #include "libavutil/intreadwrite.h"
  34. #include "avcodec.h"
  35. #include "rangecoder.h"
  36. av_cold 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. av_cold void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf,
  47. int buf_size)
  48. {
  49. /* cast to avoid compiler warning */
  50. ff_init_range_encoder(c, (uint8_t *)buf, buf_size);
  51. c->low = AV_RB16(c->bytestream);
  52. c->bytestream += 2;
  53. }
  54. void ff_build_rac_states(RangeCoder *c, int factor, int max_p)
  55. {
  56. const int64_t one = 1LL << 32;
  57. int64_t p;
  58. int last_p8, p8, i;
  59. memset(c->zero_state, 0, sizeof(c->zero_state));
  60. memset(c->one_state, 0, sizeof(c->one_state));
  61. last_p8 = 0;
  62. p = one / 2;
  63. for (i = 0; i < 128; i++) {
  64. p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
  65. if (p8 <= last_p8)
  66. p8 = last_p8 + 1;
  67. if (last_p8 && last_p8 < 256 && p8 <= max_p)
  68. c->one_state[last_p8] = p8;
  69. p += ((one - p) * factor + one / 2) >> 32;
  70. last_p8 = p8;
  71. }
  72. for (i = 256 - max_p; i <= max_p; i++) {
  73. if (c->one_state[i])
  74. continue;
  75. p = (i * one + 128) >> 8;
  76. p += ((one - p) * factor + one / 2) >> 32;
  77. p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
  78. if (p8 <= i)
  79. p8 = i + 1;
  80. if (p8 > max_p)
  81. p8 = max_p;
  82. c->one_state[i] = p8;
  83. }
  84. for (i = 1; i < 255; i++)
  85. c->zero_state[i] = 256 - c->one_state[256 - i];
  86. }
  87. /* Return the number of bytes written. */
  88. int ff_rac_terminate(RangeCoder *c)
  89. {
  90. c->range = 0xFF;
  91. c->low += 0xFF;
  92. renorm_encoder(c);
  93. c->range = 0xFF;
  94. renorm_encoder(c);
  95. assert(c->low == 0);
  96. assert(c->range >= 0x100);
  97. return c->bytestream - c->bytestream_start;
  98. }