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.

182 lines
4.4KB

  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. /**
  23. * @file rangecoder.c
  24. * Range coder.
  25. * based upon
  26. * "Range encoding: an algorithm for removing redundancy from a digitised
  27. * message.
  28. * G. N. N. Martin Presented in March 1979 to the Video &
  29. * Data Recording Conference,
  30. * IBM UK Scientific Center held in Southampton July 24-27 1979."
  31. *
  32. */
  33. #include <string.h>
  34. #include "avcodec.h"
  35. #include "common.h"
  36. #include "rangecoder.h"
  37. void ff_init_range_encoder(RangeCoder *c, uint8_t *buf, int buf_size){
  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. /* cast to avoid compiler warning */
  48. ff_init_range_encoder(c, (uint8_t *) buf, buf_size);
  49. c->low =(*c->bytestream++)<<8;
  50. c->low+= *c->bytestream++;
  51. }
  52. void ff_build_rac_states(RangeCoder *c, int factor, int max_p){
  53. const int64_t one= 1LL<<32;
  54. int64_t p;
  55. int last_p8, p8, i;
  56. memset(c->zero_state, 0, sizeof(c->zero_state));
  57. memset(c-> one_state, 0, sizeof(c-> one_state));
  58. #if 0
  59. for(i=1; i<256; i++){
  60. if(c->one_state[i])
  61. continue;
  62. p= (i*one + 128) >> 8;
  63. last_p8= i;
  64. for(;;){
  65. p+= ((one-p)*factor + one/2) >> 32;
  66. p8= (256*p + one/2) >> 32; //FIXME try without the one
  67. if(p8 <= last_p8) p8= last_p8+1;
  68. if(p8 > max_p) p8= max_p;
  69. if(p8 < last_p8)
  70. break;
  71. c->one_state[last_p8]= p8;
  72. if(p8 == last_p8)
  73. break;
  74. last_p8= p8;
  75. }
  76. }
  77. #endif
  78. #if 1
  79. last_p8= 0;
  80. p= one/2;
  81. for(i=0; i<128; i++){
  82. p8= (256*p + one/2) >> 32; //FIXME try without the one
  83. if(p8 <= last_p8) p8= last_p8+1;
  84. if(last_p8 && last_p8<256 && p8<=max_p)
  85. c->one_state[last_p8]= p8;
  86. p+= ((one-p)*factor + one/2) >> 32;
  87. last_p8= p8;
  88. }
  89. #endif
  90. for(i=256-max_p; i<=max_p; i++){
  91. if(c->one_state[i])
  92. continue;
  93. p= (i*one + 128) >> 8;
  94. p+= ((one-p)*factor + one/2) >> 32;
  95. p8= (256*p + one/2) >> 32; //FIXME try without the one
  96. if(p8 <= i) p8= i+1;
  97. if(p8 > max_p) p8= max_p;
  98. c->one_state[ i]= p8;
  99. }
  100. for(i=1; i<255; i++)
  101. c->zero_state[i]= 256-c->one_state[256-i];
  102. #if 0
  103. for(i=0; i<256; i++)
  104. av_log(NULL, AV_LOG_DEBUG, "%3d %3d\n", i, c->one_state[i]);
  105. #endif
  106. }
  107. /**
  108. *
  109. * @return the number of bytes written
  110. */
  111. int ff_rac_terminate(RangeCoder *c){
  112. c->range=0xFF;
  113. c->low +=0xFF;
  114. renorm_encoder(c);
  115. c->range=0xFF;
  116. renorm_encoder(c);
  117. assert(c->low == 0);
  118. assert(c->range >= 0x100);
  119. return c->bytestream - c->bytestream_start;
  120. }
  121. #if 0 //selftest
  122. #define SIZE 10240
  123. int main(){
  124. RangeCoder c;
  125. uint8_t b[9*SIZE];
  126. uint8_t r[9*SIZE];
  127. int i;
  128. uint8_t state[10]= {0};
  129. ff_init_range_encoder(&c, b, SIZE);
  130. ff_build_rac_states(&c, 0.05*(1LL<<32), 128+64+32+16);
  131. memset(state, 128, sizeof(state));
  132. for(i=0; i<SIZE; i++){
  133. r[i]= random()%7;
  134. }
  135. for(i=0; i<SIZE; i++){
  136. START_TIMER
  137. put_rac(&c, state, r[i]&1);
  138. STOP_TIMER("put_rac")
  139. }
  140. ff_put_rac_terminate(&c);
  141. ff_init_range_decoder(&c, b, SIZE);
  142. memset(state, 128, sizeof(state));
  143. for(i=0; i<SIZE; i++){
  144. START_TIMER
  145. if( (r[i]&1) != get_rac(&c, state) )
  146. av_log(NULL, AV_LOG_DEBUG, "rac failure at %d\n", i);
  147. STOP_TIMER("get_rac")
  148. }
  149. return 0;
  150. }
  151. #endif