2003-04-04 17:42:28 +03:00
|
|
|
/*
|
|
|
|
* exp golomb vlc stuff
|
|
|
|
* Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
|
2004-09-08 20:59:22 +03:00
|
|
|
* Copyright (c) 2004 Alex Beregszaszi
|
2003-04-04 17:42:28 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2003-04-04 17:42:28 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-04-04 17:42:28 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2003-04-04 17:42:28 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-04-04 17:42:28 +03:00
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2005-12-17 20:14:38 +02:00
|
|
|
* @brief
|
2003-04-04 17:42:28 +03:00
|
|
|
* exp golomb vlc stuff
|
2004-09-08 20:59:22 +03:00
|
|
|
* @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi
|
2003-04-04 17:42:28 +03:00
|
|
|
*/
|
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#ifndef AVCODEC_GOLOMB_H
|
|
|
|
#define AVCODEC_GOLOMB_H
|
2007-06-17 03:01:30 +03:00
|
|
|
|
2007-06-17 01:59:13 +03:00
|
|
|
#include <stdint.h>
|
2013-10-22 14:12:49 +03:00
|
|
|
|
2009-04-13 19:20:26 +03:00
|
|
|
#include "get_bits.h"
|
2007-06-17 01:59:13 +03:00
|
|
|
|
2003-05-10 01:16:14 +03:00
|
|
|
#define INVALID_VLC 0x80000000
|
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
extern const uint8_t ff_golomb_vlc_len[512];
|
|
|
|
extern const uint8_t ff_ue_golomb_vlc_code[512];
|
|
|
|
extern const int8_t ff_se_golomb_vlc_code[512];
|
|
|
|
|
2003-05-13 03:46:42 +03:00
|
|
|
extern const uint8_t ff_interleaved_golomb_vlc_len[256];
|
|
|
|
extern const uint8_t ff_interleaved_ue_golomb_vlc_code[256];
|
|
|
|
extern const int8_t ff_interleaved_se_golomb_vlc_code[256];
|
2007-08-15 15:59:27 +03:00
|
|
|
extern const uint8_t ff_interleaved_dirac_golomb_vlc_code[256];
|
2003-05-13 03:46:42 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
/**
|
2015-12-29 09:04:08 +02:00
|
|
|
* Read an unsigned Exp-Golomb code in the range 0 to 8190.
|
2019-06-30 17:54:45 +02:00
|
|
|
*
|
|
|
|
* @returns the read value or a negative error code.
|
2003-04-04 17:42:28 +03:00
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_ue_golomb(GetBitContext *gb)
|
|
|
|
{
|
2003-04-04 17:42:28 +03:00
|
|
|
unsigned int buf;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2018-08-30 22:36:55 +02:00
|
|
|
#if CACHED_BITSTREAM_READER
|
2017-07-07 16:56:10 +02:00
|
|
|
buf = show_bits_long(gb, 32);
|
|
|
|
|
|
|
|
if (buf >= (1 << 27)) {
|
|
|
|
buf >>= 32 - 9;
|
|
|
|
skip_bits_long(gb, ff_golomb_vlc_len[buf]);
|
|
|
|
|
|
|
|
return ff_ue_golomb_vlc_code[buf];
|
|
|
|
} else {
|
|
|
|
int log = 2 * av_log2(buf) - 31;
|
2020-07-10 15:12:26 +02:00
|
|
|
|
|
|
|
skip_bits_long(gb, 32 - log);
|
|
|
|
if (log < 7)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2017-07-07 16:56:10 +02:00
|
|
|
buf >>= log;
|
|
|
|
buf--;
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
#else
|
2003-04-04 17:42:28 +03:00
|
|
|
OPEN_READER(re, gb);
|
|
|
|
UPDATE_CACHE(re, gb);
|
2013-10-22 14:12:49 +03:00
|
|
|
buf = GET_CACHE(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (buf >= (1 << 27)) {
|
2003-04-04 17:42:28 +03:00
|
|
|
buf >>= 32 - 9;
|
|
|
|
LAST_SKIP_BITS(re, gb, ff_golomb_vlc_len[buf]);
|
|
|
|
CLOSE_READER(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
return ff_ue_golomb_vlc_code[buf];
|
2013-10-22 14:12:49 +03:00
|
|
|
} else {
|
2013-10-23 16:43:19 +03:00
|
|
|
int log = 2 * av_log2(buf) - 31;
|
2003-04-04 17:42:28 +03:00
|
|
|
LAST_SKIP_BITS(re, gb, 32 - log);
|
|
|
|
CLOSE_READER(re, gb);
|
2020-07-10 17:48:06 +02:00
|
|
|
if (log < 7)
|
2013-01-13 00:14:25 +03:00
|
|
|
return AVERROR_INVALIDDATA;
|
2013-10-23 20:45:07 +03:00
|
|
|
buf >>= log;
|
2013-01-13 00:14:25 +03:00
|
|
|
buf--;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
return buf;
|
|
|
|
}
|
2017-07-07 16:56:10 +02:00
|
|
|
#endif
|
2003-04-04 17:42:28 +03:00
|
|
|
}
|
|
|
|
|
2011-10-11 18:00:21 +03:00
|
|
|
/**
|
|
|
|
* Read an unsigned Exp-Golomb code in the range 0 to UINT32_MAX-1.
|
|
|
|
*/
|
|
|
|
static inline unsigned get_ue_golomb_long(GetBitContext *gb)
|
|
|
|
{
|
|
|
|
unsigned buf, log;
|
|
|
|
|
|
|
|
buf = show_bits_long(gb, 32);
|
|
|
|
log = 31 - av_log2(buf);
|
|
|
|
skip_bits_long(gb, log);
|
|
|
|
|
|
|
|
return get_bits_long(gb, log + 1) - 1;
|
|
|
|
}
|
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
/**
|
2009-02-18 13:57:11 +02:00
|
|
|
* read unsigned exp golomb code, constraint to a max of 31.
|
2020-07-14 14:59:47 +02:00
|
|
|
* If the value encountered is not in 0..31, the return value
|
|
|
|
* is outside the range 0..30.
|
2008-12-23 23:05:47 +02:00
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_ue_golomb_31(GetBitContext *gb)
|
|
|
|
{
|
2008-12-23 23:05:47 +02:00
|
|
|
unsigned int buf;
|
|
|
|
|
2018-08-30 22:36:55 +02:00
|
|
|
#if CACHED_BITSTREAM_READER
|
2017-07-07 16:56:10 +02:00
|
|
|
buf = show_bits_long(gb, 32);
|
|
|
|
|
|
|
|
buf >>= 32 - 9;
|
|
|
|
skip_bits_long(gb, ff_golomb_vlc_len[buf]);
|
|
|
|
#else
|
|
|
|
|
2008-12-23 23:05:47 +02:00
|
|
|
OPEN_READER(re, gb);
|
|
|
|
UPDATE_CACHE(re, gb);
|
2013-10-22 14:12:49 +03:00
|
|
|
buf = GET_CACHE(re, gb);
|
2008-12-23 23:05:47 +02:00
|
|
|
|
|
|
|
buf >>= 32 - 9;
|
|
|
|
LAST_SKIP_BITS(re, gb, ff_golomb_vlc_len[buf]);
|
|
|
|
CLOSE_READER(re, gb);
|
2017-07-07 16:56:10 +02:00
|
|
|
#endif
|
2008-12-23 23:05:47 +02:00
|
|
|
|
|
|
|
return ff_ue_golomb_vlc_code[buf];
|
|
|
|
}
|
|
|
|
|
2016-05-24 01:20:34 +02:00
|
|
|
static inline unsigned get_interleaved_ue_golomb(GetBitContext *gb)
|
2012-11-30 17:00:47 +03:00
|
|
|
{
|
2003-05-13 03:46:42 +03:00
|
|
|
uint32_t buf;
|
2003-05-10 01:16:14 +03:00
|
|
|
|
2018-08-30 22:36:55 +02:00
|
|
|
#if CACHED_BITSTREAM_READER
|
2017-07-07 16:56:10 +02:00
|
|
|
buf = show_bits_long(gb, 32);
|
|
|
|
|
|
|
|
if (buf & 0xAA800000) {
|
|
|
|
buf >>= 32 - 8;
|
|
|
|
skip_bits_long(gb, ff_interleaved_golomb_vlc_len[buf]);
|
|
|
|
|
|
|
|
return ff_interleaved_ue_golomb_vlc_code[buf];
|
|
|
|
} else {
|
|
|
|
unsigned ret = 1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
buf >>= 32 - 8;
|
|
|
|
skip_bits_long(gb, FFMIN(ff_interleaved_golomb_vlc_len[buf], 8));
|
|
|
|
|
|
|
|
if (ff_interleaved_golomb_vlc_len[buf] != 9) {
|
|
|
|
ret <<= (ff_interleaved_golomb_vlc_len[buf] - 1) >> 1;
|
|
|
|
ret |= ff_interleaved_dirac_golomb_vlc_code[buf];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ret = (ret << 4) | ff_interleaved_dirac_golomb_vlc_code[buf];
|
|
|
|
buf = show_bits_long(gb, 32);
|
|
|
|
} while (get_bits_left(gb) > 0);
|
|
|
|
|
|
|
|
return ret - 1;
|
|
|
|
}
|
|
|
|
#else
|
2003-05-10 01:16:14 +03:00
|
|
|
OPEN_READER(re, gb);
|
|
|
|
UPDATE_CACHE(re, gb);
|
2013-10-22 14:12:49 +03:00
|
|
|
buf = GET_CACHE(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (buf & 0xAA800000) {
|
2003-05-13 03:46:42 +03:00
|
|
|
buf >>= 32 - 8;
|
|
|
|
LAST_SKIP_BITS(re, gb, ff_interleaved_golomb_vlc_len[buf]);
|
|
|
|
CLOSE_READER(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-05-13 03:46:42 +03:00
|
|
|
return ff_interleaved_ue_golomb_vlc_code[buf];
|
2013-10-22 14:12:49 +03:00
|
|
|
} else {
|
2012-11-30 17:00:47 +03:00
|
|
|
unsigned ret = 1;
|
2007-08-15 15:59:27 +03:00
|
|
|
|
2011-12-25 06:15:56 +03:00
|
|
|
do {
|
2007-08-15 15:59:27 +03:00
|
|
|
buf >>= 32 - 8;
|
2013-10-22 14:12:49 +03:00
|
|
|
LAST_SKIP_BITS(re, gb,
|
|
|
|
FFMIN(ff_interleaved_golomb_vlc_len[buf], 8));
|
2007-08-15 15:59:27 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (ff_interleaved_golomb_vlc_len[buf] != 9) {
|
2007-08-15 15:59:27 +03:00
|
|
|
ret <<= (ff_interleaved_golomb_vlc_len[buf] - 1) >> 1;
|
2013-10-22 14:12:49 +03:00
|
|
|
ret |= ff_interleaved_dirac_golomb_vlc_code[buf];
|
2007-08-15 15:59:27 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
ret = (ret << 4) | ff_interleaved_dirac_golomb_vlc_code[buf];
|
|
|
|
UPDATE_CACHE(re, gb);
|
|
|
|
buf = GET_CACHE(re, gb);
|
2014-09-02 23:18:12 +03:00
|
|
|
} while (ret<0x8000000U && BITS_AVAILABLE(re, gb));
|
2003-05-10 01:16:14 +03:00
|
|
|
|
2003-05-13 03:46:42 +03:00
|
|
|
CLOSE_READER(re, gb);
|
2007-08-15 15:59:27 +03:00
|
|
|
return ret - 1;
|
2003-05-13 03:46:42 +03:00
|
|
|
}
|
2017-07-07 16:56:10 +02:00
|
|
|
#endif
|
2003-05-10 01:16:14 +03:00
|
|
|
}
|
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
/**
|
|
|
|
* read unsigned truncated exp golomb code.
|
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_te0_golomb(GetBitContext *gb, int range)
|
|
|
|
{
|
2012-06-06 21:13:17 +03:00
|
|
|
av_assert2(range >= 1);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (range == 1)
|
|
|
|
return 0;
|
|
|
|
else if (range == 2)
|
|
|
|
return get_bits1(gb) ^ 1;
|
|
|
|
else
|
|
|
|
return get_ue_golomb(gb);
|
2003-04-04 17:42:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* read unsigned truncated exp golomb code.
|
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_te_golomb(GetBitContext *gb, int range)
|
|
|
|
{
|
2012-06-06 21:13:17 +03:00
|
|
|
av_assert2(range >= 1);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (range == 2)
|
|
|
|
return get_bits1(gb) ^ 1;
|
|
|
|
else
|
|
|
|
return get_ue_golomb(gb);
|
2003-04-04 17:42:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* read signed exp golomb code.
|
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_se_golomb(GetBitContext *gb)
|
|
|
|
{
|
2003-04-04 17:42:28 +03:00
|
|
|
unsigned int buf;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2018-08-30 22:36:55 +02:00
|
|
|
#if CACHED_BITSTREAM_READER
|
2017-07-07 16:56:10 +02:00
|
|
|
buf = show_bits_long(gb, 32);
|
|
|
|
|
|
|
|
if (buf >= (1 << 27)) {
|
|
|
|
buf >>= 32 - 9;
|
|
|
|
skip_bits_long(gb, ff_golomb_vlc_len[buf]);
|
|
|
|
|
|
|
|
return ff_se_golomb_vlc_code[buf];
|
|
|
|
} else {
|
|
|
|
int log = 2 * av_log2(buf) - 31;
|
|
|
|
buf >>= log;
|
|
|
|
|
|
|
|
skip_bits_long(gb, 32 - log);
|
|
|
|
|
|
|
|
if (buf & 1)
|
|
|
|
buf = -(buf >> 1);
|
|
|
|
else
|
|
|
|
buf = (buf >> 1);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
#else
|
2003-04-04 17:42:28 +03:00
|
|
|
OPEN_READER(re, gb);
|
|
|
|
UPDATE_CACHE(re, gb);
|
2013-10-22 14:12:49 +03:00
|
|
|
buf = GET_CACHE(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (buf >= (1 << 27)) {
|
2003-04-04 17:42:28 +03:00
|
|
|
buf >>= 32 - 9;
|
|
|
|
LAST_SKIP_BITS(re, gb, ff_golomb_vlc_len[buf]);
|
|
|
|
CLOSE_READER(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
return ff_se_golomb_vlc_code[buf];
|
2013-10-22 14:12:49 +03:00
|
|
|
} else {
|
2015-02-13 18:58:58 +02:00
|
|
|
int log = av_log2(buf), sign;
|
2013-02-09 02:43:30 +03:00
|
|
|
LAST_SKIP_BITS(re, gb, 31 - log);
|
|
|
|
UPDATE_CACHE(re, gb);
|
|
|
|
buf = GET_CACHE(re, gb);
|
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
buf >>= log;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
LAST_SKIP_BITS(re, gb, 32 - log);
|
|
|
|
CLOSE_READER(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2015-02-13 18:58:58 +02:00
|
|
|
sign = -(buf & 1);
|
|
|
|
buf = ((buf >> 1) ^ sign) - sign;
|
2003-04-04 17:42:28 +03:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
2017-07-07 16:56:10 +02:00
|
|
|
#endif
|
2003-04-04 17:42:28 +03:00
|
|
|
}
|
|
|
|
|
2014-03-10 12:57:51 +03:00
|
|
|
static inline int get_se_golomb_long(GetBitContext *gb)
|
|
|
|
{
|
|
|
|
unsigned int buf = get_ue_golomb_long(gb);
|
2015-03-07 17:42:05 +02:00
|
|
|
int sign = (buf & 1) - 1;
|
2015-02-13 18:58:58 +02:00
|
|
|
return ((buf >> 1) ^ sign) + 1;
|
2014-03-10 12:57:51 +03:00
|
|
|
}
|
|
|
|
|
2016-05-24 01:20:34 +02:00
|
|
|
static inline int get_interleaved_se_golomb(GetBitContext *gb)
|
2013-10-22 14:12:49 +03:00
|
|
|
{
|
2003-05-10 01:16:14 +03:00
|
|
|
unsigned int buf;
|
|
|
|
|
2018-08-30 22:36:55 +02:00
|
|
|
#if CACHED_BITSTREAM_READER
|
2017-07-07 16:56:10 +02:00
|
|
|
buf = show_bits_long(gb, 32);
|
|
|
|
|
|
|
|
if (buf & 0xAA800000) {
|
|
|
|
buf >>= 32 - 8;
|
|
|
|
skip_bits_long(gb, ff_interleaved_golomb_vlc_len[buf]);
|
|
|
|
|
|
|
|
return ff_interleaved_se_golomb_vlc_code[buf];
|
|
|
|
} else {
|
|
|
|
int log;
|
|
|
|
skip_bits(gb, 8);
|
2019-11-24 16:05:24 +02:00
|
|
|
buf |= 1 | show_bits(gb, 24);
|
2017-07-07 16:56:10 +02:00
|
|
|
|
|
|
|
if ((buf & 0xAAAAAAAA) == 0)
|
|
|
|
return INVALID_VLC;
|
|
|
|
|
|
|
|
for (log = 31; (buf & 0x80000000) == 0; log--)
|
|
|
|
buf = (buf << 2) - ((buf << log) >> (log - 1)) + (buf >> 30);
|
|
|
|
|
|
|
|
skip_bits_long(gb, 63 - 2 * log - 8);
|
|
|
|
|
|
|
|
return (signed) (((((buf << log) >> log) - 1) ^ -(buf & 0x1)) + 1) >> 1;
|
|
|
|
}
|
|
|
|
#else
|
2003-05-10 01:16:14 +03:00
|
|
|
OPEN_READER(re, gb);
|
|
|
|
UPDATE_CACHE(re, gb);
|
2013-10-22 14:12:49 +03:00
|
|
|
buf = GET_CACHE(re, gb);
|
2003-05-10 01:16:14 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (buf & 0xAA800000) {
|
2003-05-13 03:46:42 +03:00
|
|
|
buf >>= 32 - 8;
|
|
|
|
LAST_SKIP_BITS(re, gb, ff_interleaved_golomb_vlc_len[buf]);
|
|
|
|
CLOSE_READER(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-05-13 03:46:42 +03:00
|
|
|
return ff_interleaved_se_golomb_vlc_code[buf];
|
2013-10-22 14:12:49 +03:00
|
|
|
} else {
|
2013-10-23 16:43:19 +03:00
|
|
|
int log;
|
2005-01-19 15:03:38 +02:00
|
|
|
LAST_SKIP_BITS(re, gb, 8);
|
|
|
|
UPDATE_CACHE(re, gb);
|
|
|
|
buf |= 1 | (GET_CACHE(re, gb) >> 8);
|
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if ((buf & 0xAAAAAAAA) == 0)
|
2003-05-13 03:46:42 +03:00
|
|
|
return INVALID_VLC;
|
2003-05-10 01:16:14 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
for (log = 31; (buf & 0x80000000) == 0; log--)
|
2003-05-13 03:46:42 +03:00
|
|
|
buf = (buf << 2) - ((buf << log) >> (log - 1)) + (buf >> 30);
|
2003-05-10 01:16:14 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
LAST_SKIP_BITS(re, gb, 63 - 2 * log - 8);
|
2003-05-13 03:46:42 +03:00
|
|
|
CLOSE_READER(re, gb);
|
2003-05-10 01:16:14 +03:00
|
|
|
|
2003-05-13 03:46:42 +03:00
|
|
|
return (signed) (((((buf << log) >> log) - 1) ^ -(buf & 0x1)) + 1) >> 1;
|
|
|
|
}
|
2017-07-07 16:56:10 +02:00
|
|
|
#endif
|
2003-05-10 01:16:14 +03:00
|
|
|
}
|
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int dirac_get_se_golomb(GetBitContext *gb)
|
|
|
|
{
|
2016-05-24 01:20:34 +02:00
|
|
|
uint32_t ret = get_interleaved_ue_golomb(gb);
|
2007-08-15 15:59:27 +03:00
|
|
|
|
|
|
|
if (ret) {
|
2015-03-07 17:42:05 +02:00
|
|
|
int sign = -get_bits1(gb);
|
2015-02-13 18:58:58 +02:00
|
|
|
ret = (ret ^ sign) - sign;
|
2007-08-15 15:59:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-06-14 00:31:28 +03:00
|
|
|
/**
|
2003-07-13 14:06:45 +03:00
|
|
|
* read unsigned golomb rice code (ffv1).
|
2003-06-14 00:31:28 +03:00
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_ur_golomb(GetBitContext *gb, int k, int limit,
|
|
|
|
int esc_len)
|
|
|
|
{
|
2003-06-14 00:31:28 +03:00
|
|
|
unsigned int buf;
|
|
|
|
int log;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2018-08-30 22:36:55 +02:00
|
|
|
#if CACHED_BITSTREAM_READER
|
2017-07-07 16:56:10 +02:00
|
|
|
buf = show_bits_long(gb, 32);
|
|
|
|
|
|
|
|
log = av_log2(buf);
|
|
|
|
|
|
|
|
if (log > 31 - limit) {
|
|
|
|
buf >>= log - k;
|
|
|
|
buf += (30 - log) << k;
|
|
|
|
skip_bits_long(gb, 32 + k - log);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
} else {
|
|
|
|
skip_bits_long(gb, limit);
|
|
|
|
buf = get_bits_long(gb, esc_len);
|
|
|
|
|
|
|
|
return buf + limit - 1;
|
|
|
|
}
|
|
|
|
#else
|
2003-06-14 00:31:28 +03:00
|
|
|
OPEN_READER(re, gb);
|
|
|
|
UPDATE_CACHE(re, gb);
|
2013-10-22 14:12:49 +03:00
|
|
|
buf = GET_CACHE(re, gb);
|
2003-06-14 00:31:28 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
log = av_log2(buf);
|
2003-07-13 14:06:45 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (log > 31 - limit) {
|
2003-06-14 00:31:28 +03:00
|
|
|
buf >>= log - k;
|
2015-03-11 17:47:13 +02:00
|
|
|
buf += (30U - log) << k;
|
2003-06-14 00:31:28 +03:00
|
|
|
LAST_SKIP_BITS(re, gb, 32 + k - log);
|
|
|
|
CLOSE_READER(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-06-14 00:31:28 +03:00
|
|
|
return buf;
|
2013-10-22 14:12:49 +03:00
|
|
|
} else {
|
2009-09-11 09:25:36 +03:00
|
|
|
LAST_SKIP_BITS(re, gb, limit);
|
|
|
|
UPDATE_CACHE(re, gb);
|
|
|
|
|
|
|
|
buf = SHOW_UBITS(re, gb, esc_len);
|
|
|
|
|
|
|
|
LAST_SKIP_BITS(re, gb, esc_len);
|
2003-06-14 00:31:28 +03:00
|
|
|
CLOSE_READER(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-07-13 14:06:45 +03:00
|
|
|
return buf + limit - 1;
|
|
|
|
}
|
2017-07-07 16:56:10 +02:00
|
|
|
#endif
|
2003-07-13 14:06:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* read unsigned golomb rice code (jpegls).
|
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_ur_golomb_jpegls(GetBitContext *gb, int k, int limit,
|
|
|
|
int esc_len)
|
|
|
|
{
|
2003-07-13 14:06:45 +03:00
|
|
|
unsigned int buf;
|
|
|
|
int log;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2018-08-30 22:36:55 +02:00
|
|
|
#if CACHED_BITSTREAM_READER
|
2017-07-07 16:56:10 +02:00
|
|
|
buf = show_bits_long(gb, 32);
|
|
|
|
|
|
|
|
log = av_log2(buf);
|
|
|
|
|
|
|
|
if (log - k >= 1 && 32 - log < limit) {
|
|
|
|
buf >>= log - k;
|
|
|
|
buf += (30 - log) << k;
|
|
|
|
skip_bits_long(gb, 32 + k - log);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
} else {
|
|
|
|
int i;
|
|
|
|
for (i = 0;
|
|
|
|
i < limit && get_bits1(gb) == 0 && get_bits_left(gb) > 0;
|
|
|
|
i++);
|
|
|
|
|
|
|
|
if (i < limit - 1) {
|
|
|
|
buf = get_bits_long(gb, k);
|
|
|
|
|
|
|
|
return buf + (i << k);
|
|
|
|
} else if (i == limit - 1) {
|
|
|
|
buf = get_bits_long(gb, esc_len);
|
|
|
|
|
|
|
|
return buf + 1;
|
|
|
|
} else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#else
|
2003-07-13 14:06:45 +03:00
|
|
|
OPEN_READER(re, gb);
|
|
|
|
UPDATE_CACHE(re, gb);
|
2013-10-22 14:12:49 +03:00
|
|
|
buf = GET_CACHE(re, gb);
|
2003-07-13 14:06:45 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
log = av_log2(buf);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2017-05-06 18:25:02 +02:00
|
|
|
av_assert2(k <= 31);
|
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (log - k >= 32 - MIN_CACHE_BITS + (MIN_CACHE_BITS == 32) &&
|
|
|
|
32 - log < limit) {
|
2003-07-13 14:06:45 +03:00
|
|
|
buf >>= log - k;
|
2015-03-11 17:47:13 +02:00
|
|
|
buf += (30U - log) << k;
|
2003-07-13 14:06:45 +03:00
|
|
|
LAST_SKIP_BITS(re, gb, 32 + k - log);
|
|
|
|
CLOSE_READER(re, gb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-07-13 14:06:45 +03:00
|
|
|
return buf;
|
2013-10-22 14:12:49 +03:00
|
|
|
} else {
|
2003-07-13 14:06:45 +03:00
|
|
|
int i;
|
2018-11-09 22:50:23 +02:00
|
|
|
for (i = 0; i + MIN_CACHE_BITS <= limit && SHOW_UBITS(re, gb, MIN_CACHE_BITS) == 0; i += MIN_CACHE_BITS) {
|
2016-12-08 02:46:26 +02:00
|
|
|
if (gb->size_in_bits <= re_index) {
|
|
|
|
CLOSE_READER(re, gb);
|
2011-11-11 01:03:48 +03:00
|
|
|
return -1;
|
2016-12-08 02:46:26 +02:00
|
|
|
}
|
2018-11-09 22:50:23 +02:00
|
|
|
LAST_SKIP_BITS(re, gb, MIN_CACHE_BITS);
|
2003-07-13 14:06:45 +03:00
|
|
|
UPDATE_CACHE(re, gb);
|
|
|
|
}
|
2018-11-09 22:50:23 +02:00
|
|
|
for (; i < limit && SHOW_UBITS(re, gb, 1) == 0; i++) {
|
|
|
|
SKIP_BITS(re, gb, 1);
|
|
|
|
}
|
|
|
|
LAST_SKIP_BITS(re, gb, 1);
|
|
|
|
UPDATE_CACHE(re, gb);
|
2003-07-13 14:06:45 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
if (i < limit - 1) {
|
|
|
|
if (k) {
|
2015-05-17 19:07:17 +02:00
|
|
|
if (k > MIN_CACHE_BITS - 1) {
|
|
|
|
buf = SHOW_UBITS(re, gb, 16) << (k-16);
|
|
|
|
LAST_SKIP_BITS(re, gb, 16);
|
|
|
|
UPDATE_CACHE(re, gb);
|
|
|
|
buf |= SHOW_UBITS(re, gb, k-16);
|
|
|
|
LAST_SKIP_BITS(re, gb, k-16);
|
|
|
|
} else {
|
|
|
|
buf = SHOW_UBITS(re, gb, k);
|
|
|
|
LAST_SKIP_BITS(re, gb, k);
|
|
|
|
}
|
2013-10-22 14:12:49 +03:00
|
|
|
} else {
|
|
|
|
buf = 0;
|
2003-07-13 14:06:45 +03:00
|
|
|
}
|
|
|
|
|
2017-05-11 21:42:45 +02:00
|
|
|
buf += ((SUINT)i << k);
|
2013-10-22 14:12:49 +03:00
|
|
|
} else if (i == limit - 1) {
|
2003-07-13 14:06:45 +03:00
|
|
|
buf = SHOW_UBITS(re, gb, esc_len);
|
|
|
|
LAST_SKIP_BITS(re, gb, esc_len);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2016-12-08 02:46:26 +02:00
|
|
|
buf ++;
|
|
|
|
} else {
|
|
|
|
buf = -1;
|
|
|
|
}
|
|
|
|
CLOSE_READER(re, gb);
|
|
|
|
return buf;
|
2003-07-13 14:06:45 +03:00
|
|
|
}
|
2017-07-07 16:56:10 +02:00
|
|
|
#endif
|
2003-06-14 00:31:28 +03:00
|
|
|
}
|
|
|
|
|
2004-02-18 03:49:30 +02:00
|
|
|
/**
|
2004-09-08 20:59:22 +03:00
|
|
|
* read signed golomb rice code (ffv1).
|
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_sr_golomb(GetBitContext *gb, int k, int limit,
|
|
|
|
int esc_len)
|
|
|
|
{
|
2015-05-17 19:08:38 +02:00
|
|
|
unsigned v = get_ur_golomb(gb, k, limit, esc_len);
|
2015-03-07 17:42:05 +02:00
|
|
|
return (v >> 1) ^ -(v & 1);
|
2004-09-08 20:59:22 +03:00
|
|
|
}
|
|
|
|
|
2004-09-10 22:40:55 +03:00
|
|
|
/**
|
2004-09-08 20:59:22 +03:00
|
|
|
* read signed golomb rice code (flac).
|
2004-02-18 03:49:30 +02:00
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_sr_golomb_flac(GetBitContext *gb, int k, int limit,
|
|
|
|
int esc_len)
|
|
|
|
{
|
2015-05-17 19:08:38 +02:00
|
|
|
unsigned v = get_ur_golomb_jpegls(gb, k, limit, esc_len);
|
2013-10-22 14:12:49 +03:00
|
|
|
return (v >> 1) ^ -(v & 1);
|
2004-02-18 03:49:30 +02:00
|
|
|
}
|
|
|
|
|
2005-02-26 05:36:04 +02:00
|
|
|
/**
|
|
|
|
* read unsigned golomb rice code (shorten).
|
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline unsigned int get_ur_golomb_shorten(GetBitContext *gb, int k)
|
|
|
|
{
|
|
|
|
return get_ur_golomb_jpegls(gb, k, INT_MAX, 0);
|
2005-02-26 05:36:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* read signed golomb rice code (shorten).
|
|
|
|
*/
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_sr_golomb_shorten(GetBitContext *gb, int k)
|
2005-02-26 05:36:04 +02:00
|
|
|
{
|
|
|
|
int uvar = get_ur_golomb_jpegls(gb, k + 1, INT_MAX, 0);
|
2015-02-13 18:58:58 +02:00
|
|
|
return (uvar >> 1) ^ -(uvar & 1);
|
2005-02-26 05:36:04 +02:00
|
|
|
}
|
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
#ifdef TRACE
|
|
|
|
|
2012-09-25 20:04:47 +03:00
|
|
|
static inline int get_ue(GetBitContext *s, const char *file, const char *func,
|
|
|
|
int line)
|
|
|
|
{
|
2013-10-22 14:12:49 +03:00
|
|
|
int show = show_bits(s, 24);
|
|
|
|
int pos = get_bits_count(s);
|
|
|
|
int i = get_ue_golomb(s);
|
|
|
|
int len = get_bits_count(s) - pos;
|
|
|
|
int bits = show >> (24 - len);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d ue @%5d in %s %s:%d\n",
|
|
|
|
bits, len, i, pos, file, func, line);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2012-09-25 20:04:47 +03:00
|
|
|
static inline int get_se(GetBitContext *s, const char *file, const char *func,
|
|
|
|
int line)
|
|
|
|
{
|
2013-10-22 14:12:49 +03:00
|
|
|
int show = show_bits(s, 24);
|
|
|
|
int pos = get_bits_count(s);
|
|
|
|
int i = get_se_golomb(s);
|
|
|
|
int len = get_bits_count(s) - pos;
|
|
|
|
int bits = show >> (24 - len);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d se @%5d in %s %s:%d\n",
|
|
|
|
bits, len, i, pos, file, func, line);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
static inline int get_te(GetBitContext *s, int r, char *file, const char *func,
|
|
|
|
int line)
|
|
|
|
{
|
|
|
|
int show = show_bits(s, 24);
|
|
|
|
int pos = get_bits_count(s);
|
|
|
|
int i = get_te0_golomb(s, r);
|
|
|
|
int len = get_bits_count(s) - pos;
|
|
|
|
int bits = show >> (24 - len);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d te @%5d in %s %s:%d\n",
|
|
|
|
bits, len, i, pos, file, func, line);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-04-04 17:42:28 +03:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2015-12-11 18:37:01 +02:00
|
|
|
#define get_ue_golomb(a) get_ue(a, __FILE__, __func__, __LINE__)
|
|
|
|
#define get_se_golomb(a) get_se(a, __FILE__, __func__, __LINE__)
|
|
|
|
#define get_te_golomb(a, r) get_te(a, r, __FILE__, __func__, __LINE__)
|
|
|
|
#define get_te0_golomb(a, r) get_te(a, r, __FILE__, __func__, __LINE__)
|
2003-04-04 17:42:28 +03:00
|
|
|
|
2013-10-22 14:12:49 +03:00
|
|
|
#endif /* TRACE */
|
2008-08-31 10:39:47 +03:00
|
|
|
#endif /* AVCODEC_GOLOMB_H */
|