ce6729917621dda74f7a861906426b7f58e56031
[paraslash.git] / bitstream.c
1 /*
2  * Common bit I/O utils.
3  *
4  * Extracted 2009 from mplayer 2009-02-10 libavcodec/bitstream.c.
5  *
6  * Copyright (c) 2000, 2001 Fabrice Bellard
7  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
8  * alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at>
9  *
10  * Licensed under the GNU Lesser General Public License.
11  * For licencing details see COPYING.LIB.
12  */
13
14 /**
15  * \file bitstream.c Bitstream API.
16  */
17
18 #include <stdlib.h>
19 #include <inttypes.h>
20 #include <stdio.h>
21 #include <string.h>
22 #include <regex.h>
23
24 #include "para.h"
25 #include "error.h"
26 #include "string.h"
27 #include "wma.h"
28 #include "bitstream.h"
29
30 /** Read an 8, 16, or 32 bit entity from a VLC table. */
31 #define GET_DATA(v, table, i, size) \
32 {\
33         const uint8_t *ptr = (const uint8_t *)table + i * size; \
34         switch (size) { \
35         case 1: \
36                 v = *(const uint8_t *)ptr; \
37                 break; \
38         case 2: \
39                 v = *(const uint16_t *)ptr; \
40                 break; \
41         default: \
42                 v = *(const uint32_t *)ptr; \
43                 break; \
44         } \
45 }
46
47 static void alloc_table(struct vlc *vlc, int size)
48 {
49         vlc->table_size += size;
50         if (vlc->table_size > vlc->table_allocated) {
51                 vlc->table_allocated += (1 << vlc->bits);
52                 vlc->table = para_realloc(vlc->table,
53                         sizeof(VLC_TYPE) * 2 * vlc->table_allocated);
54         }
55 }
56
57 static int build_table(struct vlc *vlc, int table_nb_bits, int nb_codes,
58                 const void *bits, const void *codes, int codes_size,
59                 uint32_t code_prefix, int n_prefix)
60 {
61         int i, j, k, n, table_size, table_index, nb, n1, idx, code_prefix2;
62         uint32_t code;
63         VLC_TYPE(*table)[2];
64
65         table_size = 1 << table_nb_bits;
66         table_index = vlc->table_size;
67         alloc_table(vlc, table_size);
68         table = &vlc->table[table_index];
69
70         for (i = 0; i < table_size; i++) {
71                 table[i][1] = 0; /* bits */
72                 table[i][0] = -1; /* codes */
73         }
74
75         /* map codes and compute auxiliary table sizes */
76         for (i = 0; i < nb_codes; i++) {
77                 GET_DATA(n, bits, i, 1);
78                 /* we accept tables with holes */
79                 n -= n_prefix;
80                 if (n <= 0)
81                         continue;
82                 GET_DATA(code, codes, i, codes_size);
83                 /* if code matches the prefix, it is in the table */
84                 code_prefix2 = code >> n;
85                 if (code_prefix2 != code_prefix)
86                         continue;
87                 if (n <= table_nb_bits) {
88                         /* no need to add another table */
89                         j = (code << (table_nb_bits - n)) & (table_size - 1);
90                         nb = 1 << (table_nb_bits - n);
91                         for (k = 0; k < nb; k++) {
92                                 if (table[j][1] /* bits */ != 0) {
93                                         PARA_EMERG_LOG("incorrect code\n");
94                                         exit(EXIT_FAILURE);
95                                 }
96                                 table[j][1] = n; /* bits */
97                                 table[j][0] = i;
98                                 j++;
99                         }
100                 } else {
101                         n -= table_nb_bits;
102                         j = (code >> n) & ((1 << table_nb_bits) - 1);
103                         /* compute table size */
104                         n1 = -table[j][1]; /* bits */
105                         if (n > n1)
106                                 n1 = n;
107                         table[j][1] = -n1; /* bits */
108                 }
109         }
110
111         /* fill auxiliary tables recursively */
112         for (i = 0; i < table_size; i++) {
113                 n = table[i][1]; /* bits */
114                 if (n < 0) {
115                         n = -n;
116                         if (n > table_nb_bits) {
117                                 n = table_nb_bits;
118                                 table[i][1] = -n; /* bits */
119                         }
120                         idx = build_table(vlc, n, nb_codes, bits, codes,
121                                 codes_size, (code_prefix << table_nb_bits) | i,
122                                 n_prefix + table_nb_bits);
123                         /* vlc->table might have changed */
124                         table = &vlc->table[table_index];
125                         table[i][0] = idx; /* code */
126                 }
127         }
128         return table_index;
129 }
130
131 /**
132  * Build VLC decoding tables suitable for use with get_vlc().
133  *
134  * \param vlc The structure to be initialized.
135  *
136  * \param nb_bits Set the decoding table size (2^nb_bits) entries. The bigger
137  * it is, the faster is the decoding. But it should not be too big to save
138  * memory and L1 cache. '9' is a good compromise.
139  *
140  * \param nb_codes Number of vlcs codes.
141  *
142  * \param bits Table which gives the size (in bits) of each vlc code.
143  *
144  * \param codes Table which gives the bit pattern of of each vlc code.
145  *
146  * \param codes_size The number of bytes of each entry of the \a codes tables.
147  *
148  * The wrap and size parameters allow to use any memory configuration and
149  * types (byte/word/long) to store the bits and codes tables.
150  */
151 void init_vlc(struct vlc *vlc, int nb_bits, int nb_codes, const void *bits,
152                 const void *codes, int codes_size)
153 {
154         PARA_INFO_LOG("nb_codes: %d\n", nb_codes);
155         vlc->bits = nb_bits;
156         vlc->table = NULL;
157         vlc->table_allocated = 0;
158         vlc->table_size = 0;
159         build_table(vlc, nb_bits, nb_codes, bits, codes, codes_size, 0, 0);
160 }
161
162 /**
163  * Deallocate all resources of a VLC table.
164  *
165  * \param vlc Pointer to an initialized vlc structure.
166  *
167  * The table given by \a vlc must have been initialized earlier via \ref
168  * init_vlc().
169  */
170 void free_vlc(struct vlc *vlc)
171 {
172         freep(&vlc->table);
173 }
174
175 /**
176  * Parse a vlc code.
177  *
178  * \param gbc The getbit context structure.
179  *
180  * \param table The vlc tables to use.
181  *
182  * \param bits The number of bits which will be read at once, must be
183  * identical to nb_bits in init_vlc().
184  *
185  * \param max_depth The number of times bits bits must be read to completely
186  * read the longest vlc code = (max_vlc_length + bits - 1) / bits.
187  *
188  * \return The vlc code.
189  */
190 int get_vlc(struct getbit_context *gbc, VLC_TYPE(*table)[2], int bits,
191                 int max_depth)
192 {
193         int n, idx, nb_bits, code;
194
195         idx = show_bits(gbc, bits);
196         code = table[idx][0];
197         n = table[idx][1];
198         if (max_depth > 1 && n < 0) {
199                 skip_bits(gbc, bits);
200                 nb_bits = -n;
201                 idx = show_bits(gbc, nb_bits) + code;
202                 code = table[idx][0];
203                 n = table[idx][1];
204                 if (max_depth > 2 && n < 0) {
205                         skip_bits(gbc, nb_bits);
206                         nb_bits = -n;
207                         idx = show_bits(gbc, nb_bits) + code;
208                         code = table[idx][0];
209                         n = table[idx][1];
210                 }
211         }
212         skip_bits(gbc, n);
213         return code >= 0? code : -E_VLC;
214 }