3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4 * Copyright (c) 2004 Alex Beregszaszi
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 * exp golomb vlc stuff
27 * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi
30 #ifndef AVCODEC_GOLOMB_H
31 #define AVCODEC_GOLOMB_H
38 #define INVALID_VLC 0x80000000
40 extern const uint8_t ff_golomb_vlc_len[512];
41 extern const uint8_t ff_ue_golomb_vlc_code[512];
42 extern const int8_t ff_se_golomb_vlc_code[512];
43 extern const uint8_t ff_ue_golomb_len[256];
45 extern const uint8_t ff_interleaved_golomb_vlc_len[256];
46 extern const uint8_t ff_interleaved_ue_golomb_vlc_code[256];
47 extern const int8_t ff_interleaved_se_golomb_vlc_code[256];
48 extern const uint8_t ff_interleaved_dirac_golomb_vlc_code[256];
51 * read unsigned exp golomb code.
53 static inline int get_ue_golomb(GetBitContext *gb)
59 buf = GET_CACHE(re, gb);
61 if (buf >= (1 << 27)) {
63 LAST_SKIP_BITS(re, gb, ff_golomb_vlc_len[buf]);
66 return ff_ue_golomb_vlc_code[buf];
68 int log = 2 * av_log2(buf) - 31;
69 LAST_SKIP_BITS(re, gb, 32 - log);
71 if (CONFIG_FTRAPV && log < 0) {
72 av_log(0, AV_LOG_ERROR, "Invalid UE golomb code\n");
73 return AVERROR_INVALIDDATA;
83 * Read an unsigned Exp-Golomb code in the range 0 to UINT32_MAX-1.
85 static inline unsigned get_ue_golomb_long(GetBitContext *gb)
89 buf = show_bits_long(gb, 32);
90 log = 31 - av_log2(buf);
91 skip_bits_long(gb, log);
93 return get_bits_long(gb, log + 1) - 1;
97 * read unsigned exp golomb code, constraint to a max of 31.
98 * the return value is undefined if the stored value exceeds 31.
100 static inline int get_ue_golomb_31(GetBitContext *gb)
105 UPDATE_CACHE(re, gb);
106 buf = GET_CACHE(re, gb);
109 LAST_SKIP_BITS(re, gb, ff_golomb_vlc_len[buf]);
110 CLOSE_READER(re, gb);
112 return ff_ue_golomb_vlc_code[buf];
115 static inline unsigned svq3_get_ue_golomb(GetBitContext *gb)
120 UPDATE_CACHE(re, gb);
121 buf = GET_CACHE(re, gb);
123 if (buf & 0xAA800000) {
125 LAST_SKIP_BITS(re, gb, ff_interleaved_golomb_vlc_len[buf]);
126 CLOSE_READER(re, gb);
128 return ff_interleaved_ue_golomb_vlc_code[buf];
134 LAST_SKIP_BITS(re, gb,
135 FFMIN(ff_interleaved_golomb_vlc_len[buf], 8));
137 if (ff_interleaved_golomb_vlc_len[buf] != 9) {
138 ret <<= (ff_interleaved_golomb_vlc_len[buf] - 1) >> 1;
139 ret |= ff_interleaved_dirac_golomb_vlc_code[buf];
142 ret = (ret << 4) | ff_interleaved_dirac_golomb_vlc_code[buf];
143 UPDATE_CACHE(re, gb);
144 buf = GET_CACHE(re, gb);
145 } while (ret<0x8000000U && HAVE_BITS_REMAINING(re, gb));
147 CLOSE_READER(re, gb);
153 * read unsigned truncated exp golomb code.
155 static inline int get_te0_golomb(GetBitContext *gb, int range)
157 av_assert2(range >= 1);
162 return get_bits1(gb) ^ 1;
164 return get_ue_golomb(gb);
168 * read unsigned truncated exp golomb code.
170 static inline int get_te_golomb(GetBitContext *gb, int range)
172 av_assert2(range >= 1);
175 return get_bits1(gb) ^ 1;
177 return get_ue_golomb(gb);
181 * read signed exp golomb code.
183 static inline int get_se_golomb(GetBitContext *gb)
188 UPDATE_CACHE(re, gb);
189 buf = GET_CACHE(re, gb);
191 if (buf >= (1 << 27)) {
193 LAST_SKIP_BITS(re, gb, ff_golomb_vlc_len[buf]);
194 CLOSE_READER(re, gb);
196 return ff_se_golomb_vlc_code[buf];
198 int log = av_log2(buf);
199 LAST_SKIP_BITS(re, gb, 31 - log);
200 UPDATE_CACHE(re, gb);
201 buf = GET_CACHE(re, gb);
205 LAST_SKIP_BITS(re, gb, 32 - log);
206 CLOSE_READER(re, gb);
217 static inline int svq3_get_se_golomb(GetBitContext *gb)
222 UPDATE_CACHE(re, gb);
223 buf = GET_CACHE(re, gb);
225 if (buf & 0xAA800000) {
227 LAST_SKIP_BITS(re, gb, ff_interleaved_golomb_vlc_len[buf]);
228 CLOSE_READER(re, gb);
230 return ff_interleaved_se_golomb_vlc_code[buf];
233 LAST_SKIP_BITS(re, gb, 8);
234 UPDATE_CACHE(re, gb);
235 buf |= 1 | (GET_CACHE(re, gb) >> 8);
237 if ((buf & 0xAAAAAAAA) == 0)
240 for (log = 31; (buf & 0x80000000) == 0; log--)
241 buf = (buf << 2) - ((buf << log) >> (log - 1)) + (buf >> 30);
243 LAST_SKIP_BITS(re, gb, 63 - 2 * log - 8);
244 CLOSE_READER(re, gb);
246 return (signed) (((((buf << log) >> log) - 1) ^ -(buf & 0x1)) + 1) >> 1;
250 static inline int dirac_get_se_golomb(GetBitContext *gb)
252 uint32_t ret = svq3_get_ue_golomb(gb);
257 UPDATE_CACHE(re, gb);
258 buf = SHOW_SBITS(re, gb, 1);
259 LAST_SKIP_BITS(re, gb, 1);
260 ret = (ret ^ buf) - buf;
261 CLOSE_READER(re, gb);
268 * read unsigned golomb rice code (ffv1).
270 static inline int get_ur_golomb(GetBitContext *gb, int k, int limit,
277 UPDATE_CACHE(re, gb);
278 buf = GET_CACHE(re, gb);
282 if (log > 31 - limit) {
284 buf += (30 - log) << k;
285 LAST_SKIP_BITS(re, gb, 32 + k - log);
286 CLOSE_READER(re, gb);
290 LAST_SKIP_BITS(re, gb, limit);
291 UPDATE_CACHE(re, gb);
293 buf = SHOW_UBITS(re, gb, esc_len);
295 LAST_SKIP_BITS(re, gb, esc_len);
296 CLOSE_READER(re, gb);
298 return buf + limit - 1;
303 * read unsigned golomb rice code (jpegls).
305 static inline int get_ur_golomb_jpegls(GetBitContext *gb, int k, int limit,
312 UPDATE_CACHE(re, gb);
313 buf = GET_CACHE(re, gb);
317 if (log - k >= 32 - MIN_CACHE_BITS + (MIN_CACHE_BITS == 32) &&
320 buf += (30 - log) << k;
321 LAST_SKIP_BITS(re, gb, 32 + k - log);
322 CLOSE_READER(re, gb);
327 for (i = 0; i < limit && SHOW_UBITS(re, gb, 1) == 0; i++) {
328 if (gb->size_in_bits <= re_index)
330 LAST_SKIP_BITS(re, gb, 1);
331 UPDATE_CACHE(re, gb);
333 SKIP_BITS(re, gb, 1);
337 buf = SHOW_UBITS(re, gb, k);
338 LAST_SKIP_BITS(re, gb, k);
343 CLOSE_READER(re, gb);
344 return buf + (i << k);
345 } else if (i == limit - 1) {
346 buf = SHOW_UBITS(re, gb, esc_len);
347 LAST_SKIP_BITS(re, gb, esc_len);
348 CLOSE_READER(re, gb);
357 * read signed golomb rice code (ffv1).
359 static inline int get_sr_golomb(GetBitContext *gb, int k, int limit,
362 int v = get_ur_golomb(gb, k, limit, esc_len);
370 // return (v>>1) ^ -(v&1);
374 * read signed golomb rice code (flac).
376 static inline int get_sr_golomb_flac(GetBitContext *gb, int k, int limit,
379 int v = get_ur_golomb_jpegls(gb, k, limit, esc_len);
380 return (v >> 1) ^ -(v & 1);
384 * read unsigned golomb rice code (shorten).
386 static inline unsigned int get_ur_golomb_shorten(GetBitContext *gb, int k)
388 return get_ur_golomb_jpegls(gb, k, INT_MAX, 0);
392 * read signed golomb rice code (shorten).
394 static inline int get_sr_golomb_shorten(GetBitContext *gb, int k)
396 int uvar = get_ur_golomb_jpegls(gb, k + 1, INT_MAX, 0);
405 static inline int get_ue(GetBitContext *s, const char *file, const char *func,
408 int show = show_bits(s, 24);
409 int pos = get_bits_count(s);
410 int i = get_ue_golomb(s);
411 int len = get_bits_count(s) - pos;
412 int bits = show >> (24 - len);
414 print_bin(bits, len);
416 av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d ue @%5d in %s %s:%d\n",
417 bits, len, i, pos, file, func, line);
422 static inline int get_se(GetBitContext *s, const char *file, const char *func,
425 int show = show_bits(s, 24);
426 int pos = get_bits_count(s);
427 int i = get_se_golomb(s);
428 int len = get_bits_count(s) - pos;
429 int bits = show >> (24 - len);
431 print_bin(bits, len);
433 av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d se @%5d in %s %s:%d\n",
434 bits, len, i, pos, file, func, line);
439 static inline int get_te(GetBitContext *s, int r, char *file, const char *func,
442 int show = show_bits(s, 24);
443 int pos = get_bits_count(s);
444 int i = get_te0_golomb(s, r);
445 int len = get_bits_count(s) - pos;
446 int bits = show >> (24 - len);
448 print_bin(bits, len);
450 av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d te @%5d in %s %s:%d\n",
451 bits, len, i, pos, file, func, line);
456 #define get_ue_golomb(a) get_ue(a, __FILE__, __PRETTY_FUNCTION__, __LINE__)
457 #define get_se_golomb(a) get_se(a, __FILE__, __PRETTY_FUNCTION__, __LINE__)
458 #define get_te_golomb(a, r) get_te(a, r, __FILE__, __PRETTY_FUNCTION__, __LINE__)
459 #define get_te0_golomb(a, r) get_te(a, r, __FILE__, __PRETTY_FUNCTION__, __LINE__)
464 * write unsigned exp golomb code.
466 static inline void set_ue_golomb(PutBitContext *pb, int i)
477 put_bits(pb, ff_ue_golomb_len[i], i + 1);
479 int e = av_log2(i + 1);
480 put_bits(pb, 2 * e + 1, i + 1);
485 * write truncated unsigned exp golomb code.
487 static inline void set_te_golomb(PutBitContext *pb, int i, int range)
489 av_assert2(range >= 1);
490 av_assert2(i <= range);
493 put_bits(pb, 1, i ^ 1);
495 set_ue_golomb(pb, i);
499 * write signed exp golomb code. 16 bits at most.
501 static inline void set_se_golomb(PutBitContext *pb, int i)
511 i ^= -1; //FIXME check if gcc does the right thing
516 set_ue_golomb(pb, i);
520 * write unsigned golomb rice code (ffv1).
522 static inline void set_ur_golomb(PutBitContext *pb, int i, int k, int limit,
531 put_bits(pb, e + k + 1, (1 << k) + (i & ((1 << k) - 1)));
533 put_bits(pb, limit + esc_len, i - limit + 1);
537 * write unsigned golomb rice code (jpegls).
539 static inline void set_ur_golomb_jpegls(PutBitContext *pb, int i, int k,
540 int limit, int esc_len)
560 put_bits(pb, limit, 1);
561 put_bits(pb, esc_len, i - 1);
566 * write signed golomb rice code (ffv1).
568 static inline void set_sr_golomb(PutBitContext *pb, int i, int k, int limit,
576 set_ur_golomb(pb, v, k, limit, esc_len);
580 * write signed golomb rice code (flac).
582 static inline void set_sr_golomb_flac(PutBitContext *pb, int i, int k,
583 int limit, int esc_len)
590 set_ur_golomb_jpegls(pb, v, k, limit, esc_len);
593 #endif /* AVCODEC_GOLOMB_H */