3 * Copyright (c) 2000, 2001 Fabrice Bellard.
4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 * alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at>
30 #include "bitstream.h"
31 #include <codecs/lib/codeclib.h>
33 /* this stuff is unused */
36 * Same as av_mallocz_static(), but does a realloc.
38 * @param[in] ptr The block of memory to reallocate.
39 * @param[in] size The requested size.
40 * @return Block of memory of requested size.
41 * @deprecated. Code which uses ff_realloc_static is broken/missdesigned
42 * and should correctly use static arrays
44 attribute_deprecated
void *ff_realloc_static(void *ptr
, unsigned int size
);
47 const uint8_t ff_sqrt_tab
[128]={
48 0, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5,
49 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
50 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
51 9, 9, 9, 9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11
54 const uint8_t ff_log2_tab
[256]={
55 0,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
56 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
57 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
58 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
59 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
60 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
61 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
62 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
66 void align_put_bits(PutBitContext
*s
)
68 #ifdef ALT_BITSTREAM_WRITER
69 put_bits(s
,( - s
->index
) & 7,0);
71 put_bits(s
,s
->bit_left
& 7,0);
75 void ff_put_string(PutBitContext
* pbc
, char *s
, int put_zero
)
90 #define GET_DATA(v, table, i, wrap, size) \
92 const uint8_t *ptr = (const uint8_t *)table + i * wrap;\
95 v = *(const uint8_t *)ptr;\
98 v = *(const uint16_t *)ptr;\
101 v = *(const uint32_t *)ptr;\
107 static int alloc_table(VLC
*vlc
, int size
)
110 index
= vlc
->table_size
;
111 vlc
->table_size
+= size
;
112 if (vlc
->table_size
> vlc
->table_allocated
) {
113 DEBUGF("Tried to allocate past the end of a Huffman table: %d/%d\n",
114 vlc
->table_allocated
, vlc
->table_allocated
+(1 << vlc
->bits
));
115 vlc
->table_allocated
+= (1 << vlc
->bits
);
122 static int build_table(VLC
*vlc
, int table_nb_bits
,
124 const void *bits
, int bits_wrap
, int bits_size
,
125 const void *codes
, int codes_wrap
, int codes_size
,
126 uint32_t code_prefix
, int n_prefix
)
128 int i
, j
, k
, n
, table_size
, table_index
, nb
, n1
, index
, code_prefix2
;
131 VLC_TYPE (*table
)[2];
133 table_size
= 1 << table_nb_bits
;
134 table_index
= alloc_table(vlc
, table_size
);
136 printf("new table index=%d size=%d code_prefix=%x n=%d\n",
137 table_index
, table_size
, code_prefix
, n_prefix
);
141 table
= &vlc
->table
[table_index
];
143 for(i
=0;i
<table_size
;i
++) {
144 table
[i
][1] = 0; //bits
145 table
[i
][0] = -1; //codes
148 /* first pass: map codes and compute auxillary table sizes */
149 for(i
=0;i
<nb_codes
;i
++) {
150 GET_DATA(n
, bits
, i
, bits_wrap
, bits_size
);
151 GET_DATA(code
, codes
, i
, codes_wrap
, codes_size
);
152 /* we accept tables with holes */
155 #if defined(DEBUG_VLC) && 0
156 printf("i=%d n=%d code=0x%x\n", i
, n
, code
);
158 /* if code matches the prefix, it is in the table */
160 if(flags
& INIT_VLC_LE
)
161 code_prefix2
= code
& (n_prefix
>=32 ? 0xffffffff : (uint32_t)(1 << n_prefix
)-1);
163 code_prefix2
= code
>> n
;
164 if (n
> 0 && (int)code_prefix2
== (int)code_prefix
) {
165 if (n
<= table_nb_bits
) {
166 /* no need to add another table */
167 j
= (code
<< (table_nb_bits
- n
)) & (table_size
- 1);
168 nb
= 1 << (table_nb_bits
- n
);
170 if(flags
& INIT_VLC_LE
)
171 j
= (code
>> n_prefix
) + (k
<<n
);
173 av_log(NULL
, 0, "%4x: code=%d n=%d\n",
176 if (table
[j
][1] /*bits*/ != 0) {
179 table
[j
][1] = n
; //bits
180 table
[j
][0] = i
; //code
185 j
= (code
>> ((flags
& INIT_VLC_LE
) ? n_prefix
: n
)) & ((1 << table_nb_bits
) - 1);
187 av_log(NULL
, 0,"%4x: n=%d (subtable)\n",
190 /* compute table size */
191 n1
= -table
[j
][1]; //bits
194 table
[j
][1] = -n1
; //bits
199 /* second pass : fill auxillary tables recursively */
200 for(i
=0;i
<table_size
;i
++) {
201 n
= table
[i
][1]; //bits
204 if (n
> table_nb_bits
) {
206 table
[i
][1] = -n
; //bits
208 index
= build_table(vlc
, n
, nb_codes
,
209 bits
, bits_wrap
, bits_size
,
210 codes
, codes_wrap
, codes_size
,
211 (flags
& INIT_VLC_LE
) ? (code_prefix
| (i
<< n_prefix
)) : ((code_prefix
<< table_nb_bits
) | i
),
212 n_prefix
+ table_nb_bits
);
215 /* note: realloc has been done, so reload tables */
216 table
= &vlc
->table
[table_index
];
217 table
[i
][0] = index
; //code
224 /* Build VLC decoding tables suitable for use with get_vlc().
226 'nb_bits' set thee decoding table size (2^nb_bits) entries. The
227 bigger it is, the faster is the decoding. But it should not be too
228 big to save memory and L1 cache. '9' is a good compromise.
230 'nb_codes' : number of vlcs codes
232 'bits' : table which gives the size (in bits) of each vlc code.
234 'codes' : table which gives the bit pattern of of each vlc code.
236 'xxx_wrap' : give the number of bytes between each entry of the
237 'bits' or 'codes' tables.
239 'xxx_size' : gives the number of bytes of each entry of the 'bits'
242 'wrap' and 'size' allows to use any memory configuration and types
243 (byte/word/long) to store the 'bits' and 'codes' tables.
245 'use_static' should be set to 1 for tables, which should be freed
246 with av_free_static(), 0 if free_vlc() will be used.
248 int init_vlc(VLC
*vlc
, int nb_bits
, int nb_codes
,
249 const void *bits
, int bits_wrap
, int bits_size
,
250 const void *codes
, int codes_wrap
, int codes_size
,
257 printf("build table nb_codes=%d\n", nb_codes
);
260 if (build_table(vlc
, nb_bits
, nb_codes
,
261 bits
, bits_wrap
, bits_size
,
262 codes
, codes_wrap
, codes_size
,
264 //av_free(vlc->table);
267 /* return flags to block gcc warning while allowing us to keep
268 * consistent with ffmpeg's function parameters