rangecoder.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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 libavcodec/rangecoder.c
  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. c->bytestream_start=
  38. c->bytestream= buf;
  39. c->bytestream_end= buf + buf_size;
  40. c->low= 0;
  41. c->range= 0xFF00;
  42. c->outstanding_count= 0;
  43. c->outstanding_byte= -1;
  44. }
  45. void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf, int buf_size){
  46. /* cast to avoid compiler warning */
  47. ff_init_range_encoder(c, (uint8_t *) buf, buf_size);
  48. c->low = bytestream_get_be16(&c->bytestream);
  49. }
  50. void ff_build_rac_states(RangeCoder *c, int factor, int max_p){
  51. const int64_t one= 1LL<<32;
  52. int64_t p;
  53. int last_p8, p8, i;
  54. memset(c->zero_state, 0, sizeof(c->zero_state));
  55. memset(c-> one_state, 0, sizeof(c-> one_state));
  56. last_p8= 0;
  57. p= one/2;
  58. for(i=0; i<128; i++){
  59. p8= (256*p + one/2) >> 32; //FIXME try without the one
  60. if(p8 <= last_p8) p8= last_p8+1;
  61. if(last_p8 && last_p8<256 && p8<=max_p)
  62. c->one_state[last_p8]= p8;
  63. p+= ((one-p)*factor + one/2) >> 32;
  64. last_p8= p8;
  65. }
  66. for(i=256-max_p; i<=max_p; i++){
  67. if(c->one_state[i])
  68. continue;
  69. p= (i*one + 128) >> 8;
  70. p+= ((one-p)*factor + one/2) >> 32;
  71. p8= (256*p + one/2) >> 32; //FIXME try without the one
  72. if(p8 <= i) p8= i+1;
  73. if(p8 > max_p) p8= max_p;
  74. c->one_state[ i]= p8;
  75. }
  76. for(i=1; i<255; i++)
  77. c->zero_state[i]= 256-c->one_state[256-i];
  78. }
  79. /**
  80. *
  81. * @return the number of bytes written
  82. */
  83. int ff_rac_terminate(RangeCoder *c){
  84. c->range=0xFF;
  85. c->low +=0xFF;
  86. renorm_encoder(c);
  87. c->range=0xFF;
  88. renorm_encoder(c);
  89. assert(c->low == 0);
  90. assert(c->range >= 0x100);
  91. return c->bytestream - c->bytestream_start;
  92. }
  93. #ifdef TEST
  94. #define SIZE 10240
  95. #undef random
  96. int main(void){
  97. RangeCoder c;
  98. uint8_t b[9*SIZE];
  99. uint8_t r[9*SIZE];
  100. int i;
  101. uint8_t state[10]= {0};
  102. ff_init_range_encoder(&c, b, SIZE);
  103. ff_build_rac_states(&c, 0.05*(1LL<<32), 128+64+32+16);
  104. memset(state, 128, sizeof(state));
  105. for(i=0; i<SIZE; i++){
  106. r[i]= random()%7;
  107. }
  108. for(i=0; i<SIZE; i++){
  109. START_TIMER
  110. put_rac(&c, state, r[i]&1);
  111. STOP_TIMER("put_rac")
  112. }
  113. ff_rac_terminate(&c);
  114. ff_init_range_decoder(&c, b, SIZE);
  115. memset(state, 128, sizeof(state));
  116. for(i=0; i<SIZE; i++){
  117. START_TIMER
  118. if( (r[i]&1) != get_rac(&c, state) )
  119. av_log(NULL, AV_LOG_DEBUG, "rac failure at %d\n", i);
  120. STOP_TIMER("get_rac")
  121. }
  122. return 0;
  123. }
  124. #endif /* TEST */