-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBit_stream.h
executable file
·439 lines (358 loc) · 10.7 KB
/
Bit_stream.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
#ifndef _BIT_STREAM_H
#define _BIT_STREAM_H
#ifndef __STDC_CONSTANT_MACROS
#define __STDC_CONSTANT_MACROS
#endif
#include <iostream>
#include <limits>
#include <stdint.h>
#include "errors.h"
#include "crc.h"
// host-endian-neutral integer reading
namespace {
uint32_t read_32_le(unsigned char b[4])
{
uint32_t v = 0;
for (int i = 3; i >= 0; i--)
{
v <<= 8;
v |= b[i];
}
return v;
}
uint32_t read_32_le(std::istream &is)
{
char b[4];
is.read(b, 4);
return read_32_le(reinterpret_cast<unsigned char *>(b));
}
void write_32_le(unsigned char b[4], uint32_t v)
{
for (int i = 0; i < 4; i++)
{
b[i] = v & 0xFF;
v >>= 8;
}
}
void write_32_le(std::ostream &os, uint32_t v)
{
char b[4];
write_32_le(reinterpret_cast<unsigned char *>(b), v);
os.write(b, 4);
}
uint16_t read_16_le(unsigned char b[2])
{
uint16_t v = 0;
for (int i = 1; i >= 0; i--)
{
v <<= 8;
v |= b[i];
}
return v;
}
uint16_t read_16_le(std::istream &is)
{
char b[2];
is.read(b, 2);
return read_16_le(reinterpret_cast<unsigned char *>(b));
}
void write_16_le(unsigned char b[2], uint16_t v)
{
for (int i = 0; i < 2; i++)
{
b[i] = v & 0xFF;
v >>= 8;
}
}
void write_16_le(std::ostream &os, uint16_t v)
{
char b[2];
write_16_le(reinterpret_cast<unsigned char *>(b), v);
os.write(b, 2);
}
uint32_t read_32_be(unsigned char b[4])
{
uint32_t v = 0;
for (int i = 0; i < 4; i++)
{
v <<= 8;
v |= b[i];
}
return v;
}
uint32_t read_32_be(std::istream &is)
{
char b[4];
is.read(b, 4);
return read_32_be(reinterpret_cast<unsigned char *>(b));
}
void write_32_be(unsigned char b[4], uint32_t v)
{
for (int i = 3; i >= 0; i--)
{
b[i] = v & 0xFF;
v >>= 8;
}
}
void write_32_be(std::ostream &os, uint32_t v)
{
char b[4];
write_32_be(reinterpret_cast<unsigned char *>(b), v);
os.write(b, 4);
}
uint16_t read_16_be(unsigned char b[2])
{
uint16_t v = 0;
for (int i = 0; i < 2; i++)
{
v <<= 8;
v |= b[i];
}
return v;
}
uint16_t read_16_be(std::istream &is)
{
char b[2];
is.read(b, 2);
return read_16_be(reinterpret_cast<unsigned char *>(b));
}
void write_16_be(unsigned char b[2], uint16_t v)
{
for (int i = 1; i >= 0; i--)
{
b[i] = v & 0xFF;
v >>= 8;
}
}
void write_16_be(std::ostream &os, uint16_t v)
{
char b[2];
write_16_be(reinterpret_cast<unsigned char *>(b), v);
os.write(b, 2);
}
}
// using an istream, pull off individual bits with get_bit (LSB first)
class Bit_stream {
std::istream& is;
unsigned char bit_buffer;
unsigned int bits_left;
unsigned long total_bits_read;
public:
class Weird_char_size {};
class Out_of_bits {};
Bit_stream(std::istream& _is) : is(_is), bit_buffer(0), bits_left(0), total_bits_read(0) {
}
bool get_bit() {
if (bits_left == 0) {
int c = is.get();
if (c == EOF) throw Out_of_bits();
bit_buffer = static_cast<unsigned char>(c);
bits_left = 8;
}
total_bits_read++;
bits_left --;
return ( ( bit_buffer & ( 0x80 >> bits_left ) ) != 0);
}
unsigned long get_total_bits_read(void) const
{
return total_bits_read;
}
};
class Bit_oggstream {
std::ostream& os;
unsigned char bit_buffer;
unsigned int bits_stored;
enum {header_bytes = 27, max_segments = 255, segment_size = 255};
unsigned int payload_bytes;
bool first, continued;
unsigned char page_buffer[header_bytes + max_segments + segment_size * max_segments];
uint32_t granule;
uint32_t seqno;
public:
class Weird_char_size {};
Bit_oggstream(std::ostream& _os) :
os(_os), bit_buffer(0), bits_stored(0), payload_bytes(0), first(true), continued(false), page_buffer{}, granule(0),
seqno(0)
{
}
void put_bit(bool bit) {
if (bit)
bit_buffer |= 1<<bits_stored;
bits_stored ++;
if (bits_stored == 8) {
flush_bits();
}
}
void set_granule(uint32_t g) {
granule = g;
}
void flush_bits(void) {
if (bits_stored != 0) {
if (payload_bytes == segment_size * max_segments)
{
throw Parse_error_str("ran out of space in an Ogg packet");
}
page_buffer[header_bytes + max_segments + payload_bytes] = bit_buffer;
payload_bytes ++;
bits_stored = 0;
bit_buffer = 0;
}
}
void flush_page(bool next_continued=false, bool last=false) {
if (payload_bytes != segment_size * max_segments)
{
flush_bits();
}
if (payload_bytes != 0)
{
unsigned int segments = (payload_bytes+segment_size)/segment_size; // intentionally round up
if (segments == max_segments+1) segments = max_segments; // at max eschews the final 0
// move payload back
for (unsigned int i = 0; i < payload_bytes; i++)
{
page_buffer[header_bytes + segments + i] = page_buffer[header_bytes + max_segments + i];
}
page_buffer[0] = 'O';
page_buffer[1] = 'g';
page_buffer[2] = 'g';
page_buffer[3] = 'S';
page_buffer[4] = 0; // stream_structure_version
page_buffer[5] = (continued?1:0) | (first?2:0) | (last?4:0); // header_type_flag
write_32_le(&page_buffer[6], granule); // granule low bits
write_32_le(&page_buffer[10], 0); // granule high bits
if (granule == UINT32_C(0xFFFFFFFF))
write_32_le(&page_buffer[10], UINT32_C(0xFFFFFFFF));
write_32_le(&page_buffer[14], 1); // stream serial number
write_32_le(&page_buffer[18], seqno); // page sequence number
write_32_le(&page_buffer[22], 0); // checksum (0 for now)
page_buffer[26] = static_cast<unsigned char>(segments); // segment count
// lacing values
for (unsigned int i = 0, bytes_left = payload_bytes; i < segments; i++)
{
if (bytes_left >= segment_size)
{
bytes_left -= segment_size;
page_buffer[27 + i] = segment_size;
}
else
{
page_buffer[27 + i] = static_cast<unsigned char>(bytes_left);
}
}
// checksum
write_32_le(&page_buffer[22],
checksum(page_buffer, header_bytes + segments + payload_bytes)
);
// output to ostream
for (unsigned int i = 0; i < header_bytes + segments + payload_bytes; i++)
{
os.put(page_buffer[i]);
}
seqno++;
first = false;
continued = next_continued;
payload_bytes = 0;
}
}
~Bit_oggstream() {
flush_page();
}
};
// integer of a certain number of bits, to allow reading just that many
// bits from the Bit_stream
template <unsigned int BIT_SIZE>
class Bit_uint {
unsigned int total;
public:
class Too_many_bits {};
class Int_too_big {};
Bit_uint() : total(0) {
if constexpr (BIT_SIZE > static_cast<unsigned int>(std::numeric_limits<unsigned int>::digits))
throw Too_many_bits();
}
explicit Bit_uint(unsigned int v) : total(v) {
if constexpr (BIT_SIZE > static_cast<unsigned int>(std::numeric_limits<unsigned int>::digits))
throw Too_many_bits();
if ((v >> (BIT_SIZE-1U)) > 1U)
throw Int_too_big();
}
Bit_uint& operator = (unsigned int v) {
if ((v >> (BIT_SIZE-1U)) > 1U)
throw Int_too_big();
total = v;
return *this;
}
operator unsigned int() const { return total; }
friend Bit_stream& operator >> (Bit_stream& bstream, Bit_uint& bui) {
bui.total = 0;
for ( unsigned int i = 0; i < BIT_SIZE; i++) {
if ( bstream.get_bit() ) bui.total |= (1U << i);
}
return bstream;
}
friend Bit_oggstream& operator << (Bit_oggstream& bstream, const Bit_uint& bui) {
for ( unsigned int i = 0; i < BIT_SIZE; i++) {
bstream.put_bit((bui.total & (1U << i)) != 0);
}
return bstream;
}
};
// integer of a run-time specified number of bits
// bits from the Bit_stream
class Bit_uintv {
unsigned int size;
unsigned int total;
public:
class Too_many_bits {};
class Int_too_big {};
explicit Bit_uintv(unsigned int s) : size(s), total(0) {
if (s > static_cast<unsigned int>(std::numeric_limits<unsigned int>::digits))
throw Too_many_bits();
}
Bit_uintv(unsigned int s, unsigned int v) : size(s), total(v) {
if (size > static_cast<unsigned int>(std::numeric_limits<unsigned int>::digits))
throw Too_many_bits();
if ((v >> (size-1U)) > 1U)
throw Int_too_big();
}
Bit_uintv& operator = (unsigned int v) {
if ((v >> (size-1U)) > 1U)
throw Int_too_big();
total = v;
return *this;
}
operator unsigned int() const { return total; }
friend Bit_stream& operator >> (Bit_stream& bstream, Bit_uintv& bui) {
bui.total = 0;
for ( unsigned int i = 0; i < bui.size; i++) {
if ( bstream.get_bit() ) bui.total |= (1U << i);
}
return bstream;
}
friend Bit_oggstream& operator << (Bit_oggstream& bstream, const Bit_uintv& bui) {
for ( unsigned int i = 0; i < bui.size; i++) {
bstream.put_bit((bui.total & (1U << i)) != 0);
}
return bstream;
}
};
class array_streambuf : public std::streambuf
{
// Intentionally undefined
array_streambuf& operator=(const array_streambuf& rhs) = delete;
array_streambuf(const array_streambuf &rhs) = delete;
char * arr;
public:
array_streambuf(const char * a, int l) : arr(nullptr)
{
arr = new char [l];
for (int i = 0; i < l; i++)
arr[i] = a[i];
setg(arr, arr, arr+l);
}
~array_streambuf()
{
delete [] arr;
}
};
#endif // _BIT_STREAM_H