2001-07-22 14:18:56 +00:00
|
|
|
/*
|
|
|
|
* Common bit i/o utils
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2000, 2001 Fabrice Bellard
|
2004-01-10 16:04:55 +00:00
|
|
|
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2007-07-05 10:37:29 +00:00
|
|
|
* alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-25 22:45:33 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2001-07-22 14:18:56 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:45:33 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2002-05-25 22:45:33 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 14:18:56 +00:00
|
|
|
*/
|
2003-03-06 11:32:04 +00:00
|
|
|
|
|
|
|
/**
|
2004-12-29 17:50:25 +00:00
|
|
|
* @file bitstream.c
|
|
|
|
* bitstream api.
|
2003-03-06 11:32:04 +00:00
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-07-09 18:38:07 +00:00
|
|
|
#include "avcodec.h"
|
2004-12-29 17:50:25 +00:00
|
|
|
#include "bitstream.h"
|
2003-01-27 20:39:29 +00:00
|
|
|
|
2008-06-26 16:39:21 +00:00
|
|
|
const uint8_t ff_log2_run[32]={
|
|
|
|
0, 0, 0, 0, 1, 1, 1, 1,
|
|
|
|
2, 2, 2, 2, 3, 3, 3, 3,
|
|
|
|
4, 4, 5, 5, 6, 6, 7, 7,
|
|
|
|
8, 9,10,11,12,13,14,15
|
|
|
|
};
|
|
|
|
|
2007-02-22 20:21:33 +00:00
|
|
|
/**
|
|
|
|
* Same as av_mallocz_static(), but does a realloc.
|
|
|
|
*
|
|
|
|
* @param[in] ptr The block of memory to reallocate.
|
|
|
|
* @param[in] size The requested size.
|
|
|
|
* @return Block of memory of requested size.
|
2007-07-28 12:50:28 +00:00
|
|
|
* @deprecated. Code which uses ff_realloc_static is broken/misdesigned
|
2007-05-02 09:13:47 +00:00
|
|
|
* and should correctly use static arrays
|
2007-02-22 20:21:33 +00:00
|
|
|
*/
|
2008-03-21 04:48:59 +00:00
|
|
|
attribute_deprecated av_alloc_size(2)
|
2008-05-30 21:12:33 +00:00
|
|
|
static void *ff_realloc_static(void *ptr, unsigned int size);
|
|
|
|
|
|
|
|
static void *ff_realloc_static(void *ptr, unsigned int size)
|
|
|
|
{
|
2008-05-30 23:26:09 +00:00
|
|
|
return av_realloc(ptr, size);
|
2008-05-30 21:12:33 +00:00
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
void align_put_bits(PutBitContext *s)
|
|
|
|
{
|
2002-02-12 15:43:16 +00:00
|
|
|
#ifdef ALT_BITSTREAM_WRITER
|
|
|
|
put_bits(s,( - s->index) & 7,0);
|
|
|
|
#else
|
2002-02-15 00:14:01 +00:00
|
|
|
put_bits(s,s->bit_left & 7,0);
|
2002-02-12 15:43:16 +00:00
|
|
|
#endif
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2008-02-04 00:49:14 +00:00
|
|
|
void ff_put_string(PutBitContext * pbc, const char *s, int put_zero)
|
2002-05-03 23:13:24 +00:00
|
|
|
{
|
|
|
|
while(*s){
|
|
|
|
put_bits(pbc, 8, *s);
|
|
|
|
s++;
|
|
|
|
}
|
2004-02-08 22:52:35 +00:00
|
|
|
if(put_zero)
|
|
|
|
put_bits(pbc, 8, 0);
|
2002-05-03 23:13:24 +00:00
|
|
|
}
|
|
|
|
|
2008-02-04 00:49:14 +00:00
|
|
|
void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
|
2007-07-06 14:13:25 +00:00
|
|
|
{
|
2008-02-04 00:49:14 +00:00
|
|
|
const uint16_t *srcw= (const uint16_t*)src;
|
2007-07-06 14:13:25 +00:00
|
|
|
int words= length>>4;
|
|
|
|
int bits= length&15;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if(length==0) return;
|
|
|
|
|
2009-01-14 17:19:17 +00:00
|
|
|
if(CONFIG_SMALL || words < 16 || put_bits_count(pb)&7){
|
2007-07-06 14:13:25 +00:00
|
|
|
for(i=0; i<words; i++) put_bits(pb, 16, be2me_16(srcw[i]));
|
|
|
|
}else{
|
|
|
|
for(i=0; put_bits_count(pb)&31; i++)
|
|
|
|
put_bits(pb, 8, src[i]);
|
|
|
|
flush_put_bits(pb);
|
|
|
|
memcpy(pbBufPtr(pb), src+i, 2*words-i);
|
|
|
|
skip_put_bytes(pb, 2*words-i);
|
|
|
|
}
|
|
|
|
|
|
|
|
put_bits(pb, bits, be2me_16(srcw[words])>>(16-bits));
|
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
/* VLC decoding */
|
|
|
|
|
|
|
|
//#define DEBUG_VLC
|
|
|
|
|
|
|
|
#define GET_DATA(v, table, i, wrap, size) \
|
|
|
|
{\
|
2003-02-11 16:35:48 +00:00
|
|
|
const uint8_t *ptr = (const uint8_t *)table + i * wrap;\
|
2001-07-22 14:18:56 +00:00
|
|
|
switch(size) {\
|
|
|
|
case 1:\
|
2003-02-11 16:35:48 +00:00
|
|
|
v = *(const uint8_t *)ptr;\
|
2001-07-22 14:18:56 +00:00
|
|
|
break;\
|
|
|
|
case 2:\
|
2003-02-11 16:35:48 +00:00
|
|
|
v = *(const uint16_t *)ptr;\
|
2001-07-22 14:18:56 +00:00
|
|
|
break;\
|
|
|
|
default:\
|
2003-02-11 16:35:48 +00:00
|
|
|
v = *(const uint32_t *)ptr;\
|
2001-07-22 14:18:56 +00:00
|
|
|
break;\
|
|
|
|
}\
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-27 18:10:06 +00:00
|
|
|
static int alloc_table(VLC *vlc, int size, int use_static)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
|
|
|
int index;
|
|
|
|
index = vlc->table_size;
|
|
|
|
vlc->table_size += size;
|
|
|
|
if (vlc->table_size > vlc->table_allocated) {
|
2008-05-30 19:48:02 +00:00
|
|
|
if(use_static>1)
|
|
|
|
abort(); //cant do anything, init_vlc() is used with too little memory
|
2001-07-22 14:18:56 +00:00
|
|
|
vlc->table_allocated += (1 << vlc->bits);
|
2004-11-27 18:10:06 +00:00
|
|
|
if(use_static)
|
2007-02-23 00:20:39 +00:00
|
|
|
vlc->table = ff_realloc_static(vlc->table,
|
2004-11-27 18:10:06 +00:00
|
|
|
sizeof(VLC_TYPE) * 2 * vlc->table_allocated);
|
|
|
|
else
|
|
|
|
vlc->table = av_realloc(vlc->table,
|
|
|
|
sizeof(VLC_TYPE) * 2 * vlc->table_allocated);
|
2002-07-09 10:35:10 +00:00
|
|
|
if (!vlc->table)
|
2001-07-22 14:18:56 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
2002-07-09 10:35:10 +00:00
|
|
|
static int build_table(VLC *vlc, int table_nb_bits,
|
2001-07-22 14:18:56 +00:00
|
|
|
int nb_codes,
|
|
|
|
const void *bits, int bits_wrap, int bits_size,
|
|
|
|
const void *codes, int codes_wrap, int codes_size,
|
2007-05-24 17:38:56 +00:00
|
|
|
const void *symbols, int symbols_wrap, int symbols_size,
|
2005-05-11 01:46:13 +00:00
|
|
|
uint32_t code_prefix, int n_prefix, int flags)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2007-05-24 17:38:56 +00:00
|
|
|
int i, j, k, n, table_size, table_index, nb, n1, index, code_prefix2, symbol;
|
2003-02-11 16:35:48 +00:00
|
|
|
uint32_t code;
|
2002-07-09 10:35:10 +00:00
|
|
|
VLC_TYPE (*table)[2];
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
table_size = 1 << table_nb_bits;
|
2008-05-30 19:48:02 +00:00
|
|
|
table_index = alloc_table(vlc, table_size, flags & (INIT_VLC_USE_STATIC|INIT_VLC_USE_NEW_STATIC));
|
2001-07-22 14:18:56 +00:00
|
|
|
#ifdef DEBUG_VLC
|
2007-05-16 12:57:27 +00:00
|
|
|
av_log(NULL,AV_LOG_DEBUG,"new table index=%d size=%d code_prefix=%x n=%d\n",
|
2001-07-22 14:18:56 +00:00
|
|
|
table_index, table_size, code_prefix, n_prefix);
|
|
|
|
#endif
|
|
|
|
if (table_index < 0)
|
|
|
|
return -1;
|
2002-07-09 10:35:10 +00:00
|
|
|
table = &vlc->table[table_index];
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
for(i=0;i<table_size;i++) {
|
2002-07-09 10:35:10 +00:00
|
|
|
table[i][1] = 0; //bits
|
|
|
|
table[i][0] = -1; //codes
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* first pass: map codes and compute auxillary table sizes */
|
|
|
|
for(i=0;i<nb_codes;i++) {
|
|
|
|
GET_DATA(n, bits, i, bits_wrap, bits_size);
|
|
|
|
GET_DATA(code, codes, i, codes_wrap, codes_size);
|
|
|
|
/* we accept tables with holes */
|
|
|
|
if (n <= 0)
|
|
|
|
continue;
|
2007-05-24 17:38:56 +00:00
|
|
|
if (!symbols)
|
|
|
|
symbol = i;
|
|
|
|
else
|
|
|
|
GET_DATA(symbol, symbols, i, symbols_wrap, symbols_size);
|
2001-07-22 14:18:56 +00:00
|
|
|
#if defined(DEBUG_VLC) && 0
|
2007-05-16 12:57:27 +00:00
|
|
|
av_log(NULL,AV_LOG_DEBUG,"i=%d n=%d code=0x%x\n", i, n, code);
|
2001-07-22 14:18:56 +00:00
|
|
|
#endif
|
|
|
|
/* if code matches the prefix, it is in the table */
|
|
|
|
n -= n_prefix;
|
2005-05-11 01:46:13 +00:00
|
|
|
if(flags & INIT_VLC_LE)
|
|
|
|
code_prefix2= code & (n_prefix>=32 ? 0xffffffff : (1 << n_prefix)-1);
|
|
|
|
else
|
|
|
|
code_prefix2= code >> n;
|
|
|
|
if (n > 0 && code_prefix2 == code_prefix) {
|
2001-07-22 14:18:56 +00:00
|
|
|
if (n <= table_nb_bits) {
|
|
|
|
/* no need to add another table */
|
|
|
|
j = (code << (table_nb_bits - n)) & (table_size - 1);
|
|
|
|
nb = 1 << (table_nb_bits - n);
|
|
|
|
for(k=0;k<nb;k++) {
|
2005-05-11 01:46:13 +00:00
|
|
|
if(flags & INIT_VLC_LE)
|
|
|
|
j = (code >> n_prefix) + (k<<n);
|
2001-07-22 14:18:56 +00:00
|
|
|
#ifdef DEBUG_VLC
|
2003-11-03 18:06:54 +00:00
|
|
|
av_log(NULL, AV_LOG_DEBUG, "%4x: code=%d n=%d\n",
|
2001-07-22 14:18:56 +00:00
|
|
|
j, i, n);
|
|
|
|
#endif
|
2002-07-09 10:35:10 +00:00
|
|
|
if (table[j][1] /*bits*/ != 0) {
|
2003-11-03 13:26:22 +00:00
|
|
|
av_log(NULL, AV_LOG_ERROR, "incorrect codes\n");
|
2004-10-01 12:31:11 +00:00
|
|
|
return -1;
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
2002-07-09 10:35:10 +00:00
|
|
|
table[j][1] = n; //bits
|
2007-05-24 17:38:56 +00:00
|
|
|
table[j][0] = symbol;
|
2001-07-22 14:18:56 +00:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
n -= table_nb_bits;
|
2005-05-11 01:46:13 +00:00
|
|
|
j = (code >> ((flags & INIT_VLC_LE) ? n_prefix : n)) & ((1 << table_nb_bits) - 1);
|
2001-07-22 14:18:56 +00:00
|
|
|
#ifdef DEBUG_VLC
|
2007-05-16 12:57:27 +00:00
|
|
|
av_log(NULL,AV_LOG_DEBUG,"%4x: n=%d (subtable)\n",
|
2001-07-22 14:18:56 +00:00
|
|
|
j, n);
|
|
|
|
#endif
|
|
|
|
/* compute table size */
|
2002-07-09 10:35:10 +00:00
|
|
|
n1 = -table[j][1]; //bits
|
2001-07-22 14:18:56 +00:00
|
|
|
if (n > n1)
|
|
|
|
n1 = n;
|
2002-07-09 10:35:10 +00:00
|
|
|
table[j][1] = -n1; //bits
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* second pass : fill auxillary tables recursively */
|
|
|
|
for(i=0;i<table_size;i++) {
|
2002-07-09 10:35:10 +00:00
|
|
|
n = table[i][1]; //bits
|
2001-07-22 14:18:56 +00:00
|
|
|
if (n < 0) {
|
|
|
|
n = -n;
|
|
|
|
if (n > table_nb_bits) {
|
|
|
|
n = table_nb_bits;
|
2002-07-09 10:35:10 +00:00
|
|
|
table[i][1] = -n; //bits
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
index = build_table(vlc, n, nb_codes,
|
|
|
|
bits, bits_wrap, bits_size,
|
|
|
|
codes, codes_wrap, codes_size,
|
2007-05-24 17:38:56 +00:00
|
|
|
symbols, symbols_wrap, symbols_size,
|
2005-05-11 01:46:13 +00:00
|
|
|
(flags & INIT_VLC_LE) ? (code_prefix | (i << n_prefix)) : ((code_prefix << table_nb_bits) | i),
|
|
|
|
n_prefix + table_nb_bits, flags);
|
2001-07-22 14:18:56 +00:00
|
|
|
if (index < 0)
|
|
|
|
return -1;
|
|
|
|
/* note: realloc has been done, so reload tables */
|
2002-07-09 10:35:10 +00:00
|
|
|
table = &vlc->table[table_index];
|
2002-07-11 12:42:20 +00:00
|
|
|
table[i][0] = index; //code
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return table_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 00:47:03 +00:00
|
|
|
/* Build VLC decoding tables suitable for use with get_vlc().
|
|
|
|
|
|
|
|
'nb_bits' set thee decoding table size (2^nb_bits) entries. The
|
|
|
|
bigger it is, the faster is the decoding. But it should not be too
|
|
|
|
big to save memory and L1 cache. '9' is a good compromise.
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2001-08-06 00:47:03 +00:00
|
|
|
'nb_codes' : number of vlcs codes
|
|
|
|
|
|
|
|
'bits' : table which gives the size (in bits) of each vlc code.
|
|
|
|
|
|
|
|
'codes' : table which gives the bit pattern of of each vlc code.
|
|
|
|
|
2007-05-24 17:38:56 +00:00
|
|
|
'symbols' : table which gives the values to be returned from get_vlc().
|
|
|
|
|
2001-08-06 00:47:03 +00:00
|
|
|
'xxx_wrap' : give the number of bytes between each entry of the
|
|
|
|
'bits' or 'codes' tables.
|
|
|
|
|
|
|
|
'xxx_size' : gives the number of bytes of each entry of the 'bits'
|
|
|
|
or 'codes' tables.
|
|
|
|
|
|
|
|
'wrap' and 'size' allows to use any memory configuration and types
|
2007-05-24 17:38:56 +00:00
|
|
|
(byte/word/long) to store the 'bits', 'codes', and 'symbols' tables.
|
2004-11-27 18:10:06 +00:00
|
|
|
|
|
|
|
'use_static' should be set to 1 for tables, which should be freed
|
|
|
|
with av_free_static(), 0 if free_vlc() will be used.
|
2001-08-06 00:47:03 +00:00
|
|
|
*/
|
2007-05-24 17:38:56 +00:00
|
|
|
int init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes,
|
2001-07-22 14:18:56 +00:00
|
|
|
const void *bits, int bits_wrap, int bits_size,
|
2004-11-27 18:10:06 +00:00
|
|
|
const void *codes, int codes_wrap, int codes_size,
|
2007-05-24 17:38:56 +00:00
|
|
|
const void *symbols, int symbols_wrap, int symbols_size,
|
2007-03-18 22:32:39 +00:00
|
|
|
int flags)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
|
|
|
vlc->bits = nb_bits;
|
2008-05-30 19:48:02 +00:00
|
|
|
if(flags & INIT_VLC_USE_NEW_STATIC){
|
|
|
|
if(vlc->table_size && vlc->table_size == vlc->table_allocated){
|
|
|
|
return 0;
|
|
|
|
}else if(vlc->table_size){
|
|
|
|
abort(); // fatal error, we are called on a partially initialized table
|
|
|
|
}
|
|
|
|
}else if(!(flags & INIT_VLC_USE_STATIC)) {
|
2004-11-27 18:10:06 +00:00
|
|
|
vlc->table = NULL;
|
|
|
|
vlc->table_allocated = 0;
|
|
|
|
vlc->table_size = 0;
|
|
|
|
} else {
|
|
|
|
/* Static tables are initially always NULL, return
|
|
|
|
if vlc->table != NULL to avoid double allocation */
|
|
|
|
if(vlc->table)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
#ifdef DEBUG_VLC
|
2007-05-16 12:57:27 +00:00
|
|
|
av_log(NULL,AV_LOG_DEBUG,"build table nb_codes=%d\n", nb_codes);
|
2001-07-22 14:18:56 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (build_table(vlc, nb_bits, nb_codes,
|
|
|
|
bits, bits_wrap, bits_size,
|
|
|
|
codes, codes_wrap, codes_size,
|
2007-05-24 17:38:56 +00:00
|
|
|
symbols, symbols_wrap, symbols_size,
|
2007-03-18 22:32:39 +00:00
|
|
|
0, 0, flags) < 0) {
|
2007-07-05 06:47:00 +00:00
|
|
|
av_freep(&vlc->table);
|
2001-07-22 14:18:56 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2008-05-30 19:48:02 +00:00
|
|
|
if((flags & INIT_VLC_USE_NEW_STATIC) && vlc->table_size != vlc->table_allocated)
|
|
|
|
av_log(NULL, AV_LOG_ERROR, "needed %d had %d\n", vlc->table_size, vlc->table_allocated);
|
2001-07-22 14:18:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void free_vlc(VLC *vlc)
|
|
|
|
{
|
2007-07-05 06:47:00 +00:00
|
|
|
av_freep(&vlc->table);
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|