1 /*
2 * Range coder
3 * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 /**
23 * @file
24 * Range coder.
25 * based upon
26 * "Range encoding: an algorithm for removing redundancy from a digitised
27 * message.
28 * G. N. N. Martin Presented in March 1979 to the Video &
29 * Data Recording Conference,
30 * IBM UK Scientific Center held in Southampton July 24-27 1979."
31 *
32 */
33
34 #include <string.h>
35
41
43 {
51 }
52
54 int buf_size)
55 {
56 /* cast to avoid compiler warning */
58
60 }
61
63 {
64 const int64_t one = 1LL << 32;
65 int64_t p;
66 int last_p8, p8, i;
67
70
71 last_p8 = 0;
72 p = one / 2;
73 for (i = 0; i < 128; i++) {
74 p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
75 if (p8 <= last_p8)
76 p8 = last_p8 + 1;
77 if (last_p8 && last_p8 < 256 && p8 <= max_p)
79
80 p += ((one - p) * factor + one / 2) >> 32;
81 last_p8 = p8;
82 }
83
84 for (i = 256 - max_p; i <= max_p; i++) {
86 continue;
87
88 p = (i * one + 128) >> 8;
89 p += ((one - p) * factor + one / 2) >> 32;
90 p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one
91 if (p8 <= i)
92 p8 = i + 1;
93 if (p8 > max_p)
94 p8 = max_p;
96 }
97
98 for (i = 1; i < 255; i++)
100 }
101
102 /* Return the number of bytes written. */
104 {
110
113
115 }
116
117 #ifdef TEST
118 #define SIZE 10240
119
122
125
127 {
129 int i;
132
134
137
138 memset(state, 128, sizeof(state));
139
140 for (i = 0; i <
SIZE; i++)
142
143 for (i = 0; i <
SIZE; i++)
145
147
149
150 memset(state, 128, sizeof(state));
151
152 for (i = 0; i <
SIZE; i++)
153 if ((
r[i] & 1) !=
get_rac(&c, state)) {
155 return 1;
156 }
157
158 return 0;
159 }
160 #endif /* TEST */