3 * Copyright (c) 2000, 2001 Fabrice Bellard.
4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
6 * alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at>
8 * This file is part of FFmpeg.
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.
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.
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
31 #include "bitstream.h"
34 * Same as av_mallocz_static(), but does a realloc.
36 * @param[in] ptr The block of memory to reallocate.
37 * @param[in] size The requested size.
38 * @return Block of memory of requested size.
39 * @deprecated. Code which uses ff_realloc_static is broken/misdesigned
40 * and should correctly use static arrays
42 attribute_deprecated
av_alloc_size(2)
43 static void *ff_realloc_static(void *ptr
, unsigned int size
);
45 static unsigned int last_static
= 0;
46 static unsigned int allocated_static
= 0;
47 static void** array_static
= NULL
;
49 static void *av_mallocz_static(unsigned int size
)
51 void *ptr
= av_mallocz(size
);
54 array_static
=av_fast_realloc(array_static
, &allocated_static
, sizeof(void*)*(last_static
+1));
57 array_static
[last_static
++] = ptr
;
63 static void *ff_realloc_static(void *ptr
, unsigned int size
)
67 return av_mallocz_static(size
);
68 /* Look for the old ptr */
69 for(i
= 0; i
< last_static
; i
++) {
70 if(array_static
[i
] == ptr
) {
71 array_static
[i
] = av_realloc(array_static
[i
], size
);
72 return array_static
[i
];
79 static void av_free_static(void)
82 av_freep(&array_static
[--last_static
]);
84 av_freep(&array_static
);
88 * Call av_free_static automatically before it's too late
91 static void do_free(void) __attribute__ ((destructor
));
93 static void do_free(void)
99 void align_put_bits(PutBitContext
*s
)
101 #ifdef ALT_BITSTREAM_WRITER
102 put_bits(s
,( - s
->index
) & 7,0);
104 put_bits(s
,s
->bit_left
& 7,0);
108 void ff_put_string(PutBitContext
* pbc
, const char *s
, int put_zero
)
111 put_bits(pbc
, 8, *s
);
118 void ff_copy_bits(PutBitContext
*pb
, const uint8_t *src
, int length
)
120 const uint16_t *srcw
= (const uint16_t*)src
;
121 int words
= length
>>4;
125 if(length
==0) return;
127 if(ENABLE_SMALL
|| words
< 16 || put_bits_count(pb
)&7){
128 for(i
=0; i
<words
; i
++) put_bits(pb
, 16, be2me_16(srcw
[i
]));
130 for(i
=0; put_bits_count(pb
)&31; i
++)
131 put_bits(pb
, 8, src
[i
]);
133 memcpy(pbBufPtr(pb
), src
+i
, 2*words
-i
);
134 skip_put_bytes(pb
, 2*words
-i
);
137 put_bits(pb
, bits
, be2me_16(srcw
[words
])>>(16-bits
));
144 #define GET_DATA(v, table, i, wrap, size) \
146 const uint8_t *ptr = (const uint8_t *)table + i * wrap;\
149 v = *(const uint8_t *)ptr;\
152 v = *(const uint16_t *)ptr;\
155 v = *(const uint32_t *)ptr;\
161 static int alloc_table(VLC
*vlc
, int size
, int use_static
)
164 index
= vlc
->table_size
;
165 vlc
->table_size
+= size
;
166 if (vlc
->table_size
> vlc
->table_allocated
) {
168 abort(); //cant do anything, init_vlc() is used with too little memory
169 vlc
->table_allocated
+= (1 << vlc
->bits
);
171 vlc
->table
= ff_realloc_static(vlc
->table
,
172 sizeof(VLC_TYPE
) * 2 * vlc
->table_allocated
);
174 vlc
->table
= av_realloc(vlc
->table
,
175 sizeof(VLC_TYPE
) * 2 * vlc
->table_allocated
);
182 static int build_table(VLC
*vlc
, int table_nb_bits
,
184 const void *bits
, int bits_wrap
, int bits_size
,
185 const void *codes
, int codes_wrap
, int codes_size
,
186 const void *symbols
, int symbols_wrap
, int symbols_size
,
187 uint32_t code_prefix
, int n_prefix
, int flags
)
189 int i
, j
, k
, n
, table_size
, table_index
, nb
, n1
, index
, code_prefix2
, symbol
;
191 VLC_TYPE (*table
)[2];
193 table_size
= 1 << table_nb_bits
;
194 table_index
= alloc_table(vlc
, table_size
, flags
& (INIT_VLC_USE_STATIC
|INIT_VLC_USE_NEW_STATIC
));
196 av_log(NULL
,AV_LOG_DEBUG
,"new table index=%d size=%d code_prefix=%x n=%d\n",
197 table_index
, table_size
, code_prefix
, n_prefix
);
201 table
= &vlc
->table
[table_index
];
203 for(i
=0;i
<table_size
;i
++) {
204 table
[i
][1] = 0; //bits
205 table
[i
][0] = -1; //codes
208 /* first pass: map codes and compute auxillary table sizes */
209 for(i
=0;i
<nb_codes
;i
++) {
210 GET_DATA(n
, bits
, i
, bits_wrap
, bits_size
);
211 GET_DATA(code
, codes
, i
, codes_wrap
, codes_size
);
212 /* we accept tables with holes */
218 GET_DATA(symbol
, symbols
, i
, symbols_wrap
, symbols_size
);
219 #if defined(DEBUG_VLC) && 0
220 av_log(NULL
,AV_LOG_DEBUG
,"i=%d n=%d code=0x%x\n", i
, n
, code
);
222 /* if code matches the prefix, it is in the table */
224 if(flags
& INIT_VLC_LE
)
225 code_prefix2
= code
& (n_prefix
>=32 ?
0xffffffff : (1 << n_prefix
)-1);
227 code_prefix2
= code
>> n
;
228 if (n
> 0 && code_prefix2
== code_prefix
) {
229 if (n
<= table_nb_bits
) {
230 /* no need to add another table */
231 j
= (code
<< (table_nb_bits
- n
)) & (table_size
- 1);
232 nb
= 1 << (table_nb_bits
- n
);
234 if(flags
& INIT_VLC_LE
)
235 j
= (code
>> n_prefix
) + (k
<<n
);
237 av_log(NULL
, AV_LOG_DEBUG
, "%4x: code=%d n=%d\n",
240 if (table
[j
][1] /*bits*/ != 0) {
241 av_log(NULL
, AV_LOG_ERROR
, "incorrect codes\n");
244 table
[j
][1] = n
; //bits
245 table
[j
][0] = symbol
;
250 j
= (code
>> ((flags
& INIT_VLC_LE
) ? n_prefix
: n
)) & ((1 << table_nb_bits
) - 1);
252 av_log(NULL
,AV_LOG_DEBUG
,"%4x: n=%d (subtable)\n",
255 /* compute table size */
256 n1
= -table
[j
][1]; //bits
259 table
[j
][1] = -n1
; //bits
264 /* second pass : fill auxillary tables recursively */
265 for(i
=0;i
<table_size
;i
++) {
266 n
= table
[i
][1]; //bits
269 if (n
> table_nb_bits
) {
271 table
[i
][1] = -n
; //bits
273 index
= build_table(vlc
, n
, nb_codes
,
274 bits
, bits_wrap
, bits_size
,
275 codes
, codes_wrap
, codes_size
,
276 symbols
, symbols_wrap
, symbols_size
,
277 (flags
& INIT_VLC_LE
) ?
(code_prefix
| (i
<< n_prefix
)) : ((code_prefix
<< table_nb_bits
) | i
),
278 n_prefix
+ table_nb_bits
, flags
);
281 /* note: realloc has been done, so reload tables */
282 table
= &vlc
->table
[table_index
];
283 table
[i
][0] = index
; //code
290 /* Build VLC decoding tables suitable for use with get_vlc().
292 'nb_bits' set thee decoding table size (2^nb_bits) entries. The
293 bigger it is, the faster is the decoding. But it should not be too
294 big to save memory and L1 cache. '9' is a good compromise.
296 'nb_codes' : number of vlcs codes
298 'bits' : table which gives the size (in bits) of each vlc code.
300 'codes' : table which gives the bit pattern of of each vlc code.
302 'symbols' : table which gives the values to be returned from get_vlc().
304 'xxx_wrap' : give the number of bytes between each entry of the
305 'bits' or 'codes' tables.
307 'xxx_size' : gives the number of bytes of each entry of the 'bits'
310 'wrap' and 'size' allows to use any memory configuration and types
311 (byte/word/long) to store the 'bits', 'codes', and 'symbols' tables.
313 'use_static' should be set to 1 for tables, which should be freed
314 with av_free_static(), 0 if free_vlc() will be used.
316 int init_vlc_sparse(VLC
*vlc
, int nb_bits
, int nb_codes
,
317 const void *bits
, int bits_wrap
, int bits_size
,
318 const void *codes
, int codes_wrap
, int codes_size
,
319 const void *symbols
, int symbols_wrap
, int symbols_size
,
323 if(flags
& INIT_VLC_USE_NEW_STATIC
){
324 if(vlc
->table_size
&& vlc
->table_size
== vlc
->table_allocated
){
326 }else if(vlc
->table_size
){
327 abort(); // fatal error, we are called on a partially initialized table
329 }else if(!(flags
& INIT_VLC_USE_STATIC
)) {
331 vlc
->table_allocated
= 0;
334 /* Static tables are initially always NULL, return
335 if vlc->table != NULL to avoid double allocation */
341 av_log(NULL
,AV_LOG_DEBUG
,"build table nb_codes=%d\n", nb_codes
);
344 if (build_table(vlc
, nb_bits
, nb_codes
,
345 bits
, bits_wrap
, bits_size
,
346 codes
, codes_wrap
, codes_size
,
347 symbols
, symbols_wrap
, symbols_size
,
349 av_freep(&vlc
->table
);
352 if((flags
& INIT_VLC_USE_NEW_STATIC
) && vlc
->table_size
!= vlc
->table_allocated
)
353 av_log(NULL
, AV_LOG_ERROR
, "needed %d had %d\n", vlc
->table_size
, vlc
->table_allocated
);
358 void free_vlc(VLC
*vlc
)
360 av_freep(&vlc
->table
);