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.

295 lines
9.2KB

  1. /*
  2. * Common bit i/o utils
  3. * Copyright (c) 2000, 2001 Fabrice Bellard
  4. * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at>
  7. *
  8. * This file is part of FFmpeg.
  9. *
  10. * FFmpeg is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * FFmpeg is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with FFmpeg; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. /**
  25. * @file libavcodec/bitstream.c
  26. * bitstream api.
  27. */
  28. #include "avcodec.h"
  29. #include "get_bits.h"
  30. #include "put_bits.h"
  31. const uint8_t ff_log2_run[32]={
  32. 0, 0, 0, 0, 1, 1, 1, 1,
  33. 2, 2, 2, 2, 3, 3, 3, 3,
  34. 4, 4, 5, 5, 6, 6, 7, 7,
  35. 8, 9,10,11,12,13,14,15
  36. };
  37. void align_put_bits(PutBitContext *s)
  38. {
  39. #ifdef ALT_BITSTREAM_WRITER
  40. put_bits(s,( - s->index) & 7,0);
  41. #else
  42. put_bits(s,s->bit_left & 7,0);
  43. #endif
  44. }
  45. void ff_put_string(PutBitContext *pb, const char *string, int terminate_string)
  46. {
  47. while(*string){
  48. put_bits(pb, 8, *string);
  49. string++;
  50. }
  51. if(terminate_string)
  52. put_bits(pb, 8, 0);
  53. }
  54. void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
  55. {
  56. int words= length>>4;
  57. int bits= length&15;
  58. int i;
  59. if(length==0) return;
  60. if(CONFIG_SMALL || words < 16 || put_bits_count(pb)&7){
  61. for(i=0; i<words; i++) put_bits(pb, 16, AV_RB16(src + 2*i));
  62. }else{
  63. for(i=0; put_bits_count(pb)&31; i++)
  64. put_bits(pb, 8, src[i]);
  65. flush_put_bits(pb);
  66. memcpy(put_bits_ptr(pb), src+i, 2*words-i);
  67. skip_put_bytes(pb, 2*words-i);
  68. }
  69. put_bits(pb, bits, AV_RB16(src + 2*words)>>(16-bits));
  70. }
  71. /* VLC decoding */
  72. //#define DEBUG_VLC
  73. #define GET_DATA(v, table, i, wrap, size) \
  74. {\
  75. const uint8_t *ptr = (const uint8_t *)table + i * wrap;\
  76. switch(size) {\
  77. case 1:\
  78. v = *(const uint8_t *)ptr;\
  79. break;\
  80. case 2:\
  81. v = *(const uint16_t *)ptr;\
  82. break;\
  83. default:\
  84. v = *(const uint32_t *)ptr;\
  85. break;\
  86. }\
  87. }
  88. static int alloc_table(VLC *vlc, int size, int use_static)
  89. {
  90. int index;
  91. index = vlc->table_size;
  92. vlc->table_size += size;
  93. if (vlc->table_size > vlc->table_allocated) {
  94. if(use_static)
  95. abort(); //cant do anything, init_vlc() is used with too little memory
  96. vlc->table_allocated += (1 << vlc->bits);
  97. vlc->table = av_realloc(vlc->table,
  98. sizeof(VLC_TYPE) * 2 * vlc->table_allocated);
  99. if (!vlc->table)
  100. return -1;
  101. }
  102. return index;
  103. }
  104. static int build_table(VLC *vlc, int table_nb_bits,
  105. int nb_codes,
  106. const void *bits, int bits_wrap, int bits_size,
  107. const void *codes, int codes_wrap, int codes_size,
  108. const void *symbols, int symbols_wrap, int symbols_size,
  109. uint32_t code_prefix, int n_prefix, int flags)
  110. {
  111. int i, j, k, n, table_size, table_index, nb, n1, index, code_prefix2, symbol;
  112. uint32_t code;
  113. VLC_TYPE (*table)[2];
  114. table_size = 1 << table_nb_bits;
  115. table_index = alloc_table(vlc, table_size, flags & INIT_VLC_USE_NEW_STATIC);
  116. #ifdef DEBUG_VLC
  117. av_log(NULL,AV_LOG_DEBUG,"new table index=%d size=%d code_prefix=%x n=%d\n",
  118. table_index, table_size, code_prefix, n_prefix);
  119. #endif
  120. if (table_index < 0)
  121. return -1;
  122. table = &vlc->table[table_index];
  123. for(i=0;i<table_size;i++) {
  124. table[i][1] = 0; //bits
  125. table[i][0] = -1; //codes
  126. }
  127. /* first pass: map codes and compute auxillary table sizes */
  128. for(i=0;i<nb_codes;i++) {
  129. GET_DATA(n, bits, i, bits_wrap, bits_size);
  130. GET_DATA(code, codes, i, codes_wrap, codes_size);
  131. /* we accept tables with holes */
  132. if (n <= 0)
  133. continue;
  134. if (!symbols)
  135. symbol = i;
  136. else
  137. GET_DATA(symbol, symbols, i, symbols_wrap, symbols_size);
  138. #if defined(DEBUG_VLC) && 0
  139. av_log(NULL,AV_LOG_DEBUG,"i=%d n=%d code=0x%x\n", i, n, code);
  140. #endif
  141. /* if code matches the prefix, it is in the table */
  142. n -= n_prefix;
  143. if(flags & INIT_VLC_LE)
  144. code_prefix2= code & (n_prefix>=32 ? 0xffffffff : (1 << n_prefix)-1);
  145. else
  146. code_prefix2= code >> n;
  147. if (n > 0 && code_prefix2 == code_prefix) {
  148. if (n <= table_nb_bits) {
  149. /* no need to add another table */
  150. j = (code << (table_nb_bits - n)) & (table_size - 1);
  151. nb = 1 << (table_nb_bits - n);
  152. for(k=0;k<nb;k++) {
  153. if(flags & INIT_VLC_LE)
  154. j = (code >> n_prefix) + (k<<n);
  155. #ifdef DEBUG_VLC
  156. av_log(NULL, AV_LOG_DEBUG, "%4x: code=%d n=%d\n",
  157. j, i, n);
  158. #endif
  159. if (table[j][1] /*bits*/ != 0) {
  160. av_log(NULL, AV_LOG_ERROR, "incorrect codes\n");
  161. return -1;
  162. }
  163. table[j][1] = n; //bits
  164. table[j][0] = symbol;
  165. j++;
  166. }
  167. } else {
  168. n -= table_nb_bits;
  169. j = (code >> ((flags & INIT_VLC_LE) ? n_prefix : n)) & ((1 << table_nb_bits) - 1);
  170. #ifdef DEBUG_VLC
  171. av_log(NULL,AV_LOG_DEBUG,"%4x: n=%d (subtable)\n",
  172. j, n);
  173. #endif
  174. /* compute table size */
  175. n1 = -table[j][1]; //bits
  176. if (n > n1)
  177. n1 = n;
  178. table[j][1] = -n1; //bits
  179. }
  180. }
  181. }
  182. /* second pass : fill auxillary tables recursively */
  183. for(i=0;i<table_size;i++) {
  184. n = table[i][1]; //bits
  185. if (n < 0) {
  186. n = -n;
  187. if (n > table_nb_bits) {
  188. n = table_nb_bits;
  189. table[i][1] = -n; //bits
  190. }
  191. index = build_table(vlc, n, nb_codes,
  192. bits, bits_wrap, bits_size,
  193. codes, codes_wrap, codes_size,
  194. symbols, symbols_wrap, symbols_size,
  195. (flags & INIT_VLC_LE) ? (code_prefix | (i << n_prefix)) : ((code_prefix << table_nb_bits) | i),
  196. n_prefix + table_nb_bits, flags);
  197. if (index < 0)
  198. return -1;
  199. /* note: realloc has been done, so reload tables */
  200. table = &vlc->table[table_index];
  201. table[i][0] = index; //code
  202. }
  203. }
  204. return table_index;
  205. }
  206. /* Build VLC decoding tables suitable for use with get_vlc().
  207. 'nb_bits' set thee decoding table size (2^nb_bits) entries. The
  208. bigger it is, the faster is the decoding. But it should not be too
  209. big to save memory and L1 cache. '9' is a good compromise.
  210. 'nb_codes' : number of vlcs codes
  211. 'bits' : table which gives the size (in bits) of each vlc code.
  212. 'codes' : table which gives the bit pattern of of each vlc code.
  213. 'symbols' : table which gives the values to be returned from get_vlc().
  214. 'xxx_wrap' : give the number of bytes between each entry of the
  215. 'bits' or 'codes' tables.
  216. 'xxx_size' : gives the number of bytes of each entry of the 'bits'
  217. or 'codes' tables.
  218. 'wrap' and 'size' allows to use any memory configuration and types
  219. (byte/word/long) to store the 'bits', 'codes', and 'symbols' tables.
  220. 'use_static' should be set to 1 for tables, which should be freed
  221. with av_free_static(), 0 if free_vlc() will be used.
  222. */
  223. int init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes,
  224. const void *bits, int bits_wrap, int bits_size,
  225. const void *codes, int codes_wrap, int codes_size,
  226. const void *symbols, int symbols_wrap, int symbols_size,
  227. int flags)
  228. {
  229. vlc->bits = nb_bits;
  230. if(flags & INIT_VLC_USE_NEW_STATIC){
  231. if(vlc->table_size && vlc->table_size == vlc->table_allocated){
  232. return 0;
  233. }else if(vlc->table_size){
  234. abort(); // fatal error, we are called on a partially initialized table
  235. }
  236. }else {
  237. vlc->table = NULL;
  238. vlc->table_allocated = 0;
  239. vlc->table_size = 0;
  240. }
  241. #ifdef DEBUG_VLC
  242. av_log(NULL,AV_LOG_DEBUG,"build table nb_codes=%d\n", nb_codes);
  243. #endif
  244. if (build_table(vlc, nb_bits, nb_codes,
  245. bits, bits_wrap, bits_size,
  246. codes, codes_wrap, codes_size,
  247. symbols, symbols_wrap, symbols_size,
  248. 0, 0, flags) < 0) {
  249. av_freep(&vlc->table);
  250. return -1;
  251. }
  252. if((flags & INIT_VLC_USE_NEW_STATIC) && vlc->table_size != vlc->table_allocated)
  253. av_log(NULL, AV_LOG_ERROR, "needed %d had %d\n", vlc->table_size, vlc->table_allocated);
  254. return 0;
  255. }
  256. void free_vlc(VLC *vlc)
  257. {
  258. av_freep(&vlc->table);
  259. }