This repository has been archived by the owner on Dec 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
bitstream.c
145 lines (122 loc) · 2.77 KB
/
bitstream.c
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
/*
* vdr-plugin-vnsi - KODI server plugin for VDR
*
* Copyright (C) 2010 Alwin Esch (Team XBMC)
* Copyright (C) 2015 Team KODI
*
* http://kodi.tv
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with KODI; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "bitstream.h"
void cBitstream::skipBits(unsigned int num)
{
if (m_doEP3)
{
register unsigned int tmp;
while (num)
{
tmp = m_offset >> 3;
if (!(m_offset & 7) && (m_data[tmp--] == 3) && (m_data[tmp--] == 0) && (m_data[tmp] == 0))
m_offset += 8; // skip EP3 byte
if (!(m_offset & 7) && (num >= 8)) // byte boundary, speed up things a little bit
{
m_offset += 8;
num -= 8;
}
else if ((tmp = 8-(m_offset & 7)) <= num) // jump to byte boundary
{
m_offset += tmp;
num -= tmp;
}
else
{
m_offset += num;
num = 0;
}
if (m_offset >= m_len)
{
m_error = true;
break;
}
}
return;
}
m_offset += num;
}
unsigned int cBitstream::readBits(int num)
{
unsigned int r = 0;
while(num > 0)
{
if (m_doEP3)
{
size_t tmp = m_offset >> 3;
if (!(m_offset & 7) && (m_data[tmp--] == 3) && (m_data[tmp--] == 0) && (m_data[tmp] == 0))
m_offset += 8; // skip EP3 byte
}
if(m_offset >= m_len)
{
m_error = true;
return 0;
}
num--;
if(m_data[m_offset / 8] & (1 << (7 - (m_offset & 7))))
r |= 1 << num;
m_offset++;
}
return r;
}
unsigned int cBitstream::showBits(int num)
{
unsigned int r = 0;
size_t offs = m_offset;
while(num > 0)
{
if(offs >= m_len)
{
m_error = true;
return 0;
}
num--;
if(m_data[offs / 8] & (1 << (7 - (offs & 7))))
r |= 1 << num;
offs++;
}
return r;
}
unsigned int cBitstream::readGolombUE(int maxbits)
{
int lzb = -1;
int bits = 0;
for(int b = 0; !b; lzb++, bits++)
{
if (bits > maxbits)
return 0;
b = readBits1();
}
return (1 << lzb) - 1 + readBits(lzb);
}
signed int cBitstream::readGolombSE()
{
int v, pos;
v = readGolombUE();
if(v == 0)
return 0;
pos = (v & 1);
v = (v + 1) >> 1;
return pos ? v : -v;
}