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.

143 lines
4.0KB

  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. #include <string.h>
  32. #include "libavutil/attributes.h"
  33. #include "libavutil/avassert.h"
  34. #include "libavutil/intreadwrite.h"
  35. #include "avcodec.h"
  36. #include "rangecoder.h"
  37. av_cold void ff_init_range_encoder(RangeCoder *c, uint8_t *buf, int buf_size)
  38. {
  39. c->bytestream_start =
  40. c->bytestream = buf;
  41. c->bytestream_end = buf + buf_size;
  42. c->low = 0;
  43. c->range = 0xFF00;
  44. c->outstanding_count = 0;
  45. c->outstanding_byte = -1;
  46. }
  47. av_cold void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf,
  48. int buf_size)
  49. {
  50. /* cast to avoid compiler warning */
  51. ff_init_range_encoder(c, (uint8_t *)buf, buf_size);
  52. c->low = AV_RB16(c->bytestream);
  53. c->bytestream += 2;
  54. c->overread = 0;
  55. if (c->low >= 0xFF00) {
  56. c->low = 0xFF00;
  57. c->bytestream_end = c->bytestream;
  58. }
  59. }
  60. void ff_build_rac_states(RangeCoder *c, int factor, int max_p)
  61. {
  62. const int64_t one = 1LL << 32;
  63. int64_t p;
  64. int last_p8, p8, i;
  65. memset(c->zero_state, 0, sizeof(c->zero_state));
  66. memset(c->one_state, 0, sizeof(c->one_state));
  67. last_p8 = 0;
  68. p = one / 2;
  69. for (i = 0; i < 128; i++) {
  70. p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
  71. if (p8 <= last_p8)
  72. p8 = last_p8 + 1;
  73. if (last_p8 && last_p8 < 256 && p8 <= max_p)
  74. c->one_state[last_p8] = p8;
  75. p += ((one - p) * factor + one / 2) >> 32;
  76. last_p8 = p8;
  77. }
  78. for (i = 256 - max_p; i <= max_p; i++) {
  79. if (c->one_state[i])
  80. continue;
  81. p = (i * one + 128) >> 8;
  82. p += ((one - p) * factor + one / 2) >> 32;
  83. p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
  84. if (p8 <= i)
  85. p8 = i + 1;
  86. if (p8 > max_p)
  87. p8 = max_p;
  88. c->one_state[i] = p8;
  89. }
  90. for (i = 1; i < 255; i++)
  91. c->zero_state[i] = 256 - c->one_state[256 - i];
  92. }
  93. /* Return the number of bytes written. */
  94. int ff_rac_terminate(RangeCoder *c, int version)
  95. {
  96. if (version == 1)
  97. put_rac(c, (uint8_t[]) { 129 }, 0);
  98. c->range = 0xFF;
  99. c->low += 0xFF;
  100. renorm_encoder(c);
  101. c->range = 0xFF;
  102. renorm_encoder(c);
  103. av_assert1(c->low == 0);
  104. av_assert1(c->range >= 0x100);
  105. return c->bytestream - c->bytestream_start;
  106. }
  107. int ff_rac_check_termination(RangeCoder *c, int version)
  108. {
  109. if (version == 1) {
  110. RangeCoder tmp = *c;
  111. get_rac(c, (uint8_t[]) { 129 });
  112. if (c->bytestream == tmp.bytestream && c->bytestream > c->bytestream_start)
  113. tmp.low -= *--tmp.bytestream;
  114. tmp.bytestream_end = tmp.bytestream;
  115. if (get_rac(&tmp, (uint8_t[]) { 129 }))
  116. return AVERROR_INVALIDDATA;
  117. } else {
  118. if (c->bytestream_end != c->bytestream)
  119. return AVERROR_INVALIDDATA;
  120. }
  121. return 0;
  122. }