bitstream.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:10k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * Common bit i/o utils
  3.  * Copyright (c) 2000, 2001 Fabrice Bellard.
  4.  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5.  *
  6.  * alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at>
  7.  *
  8.  * This file is part of FFmpeg.
  9.  *
  10.  * FFmpeg is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU Lesser General Public
  12.  * License as published by the Free Software Foundation; either
  13.  * version 2.1 of the License, or (at your option) any later version.
  14.  *
  15.  * FFmpeg is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18.  * Lesser General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU Lesser General Public
  21.  * License along with FFmpeg; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23.  */
  24. /**
  25.  * @file bitstream.c
  26.  * bitstream api.
  27.  */
  28. #include "avcodec.h"
  29. #include "bitstream.h"
  30. #include "define.h"
  31. /**
  32.  * Same as av_mallocz_static(), but does a realloc.
  33.  *
  34.  * @param[in] ptr The block of memory to reallocate.
  35.  * @param[in] size The requested size.
  36.  * @return Block of memory of requested size.
  37.  * @deprecated. Code which uses ff_realloc_static is broken/misdesigned
  38.  * and should correctly use static arrays
  39.  */
  40. attribute_deprecated av_alloc_size(2)
  41. static void *ff_realloc_static(void *ptr, unsigned int size);
  42. static void *ff_realloc_static(void *ptr, unsigned int size)
  43. {
  44.     return av_realloc(ptr, size);
  45. }
  46. void align_put_bits(PutBitContext *s)
  47. {
  48. #ifdef ALT_BITSTREAM_WRITER
  49.     put_bits(s,(  - s->index) & 7,0);
  50. #else
  51.     put_bits(s,s->bit_left & 7,0);
  52. #endif
  53. }
  54. void ff_put_string(PutBitContext * pbc, const char *s, int put_zero)
  55. {
  56.     while(*s){
  57.         put_bits(pbc, 8, *s);
  58.         s++;
  59.     }
  60.     if(put_zero)
  61.         put_bits(pbc, 8, 0);
  62. }
  63. void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
  64. {
  65.     const uint16_t *srcw= (const uint16_t*)src;
  66.     int words= length>>4;
  67.     int bits= length&15;
  68.     int i;
  69.     if(length==0) return;
  70.     if(ENABLE_SMALL || words < 16 || put_bits_count(pb)&7){
  71.         for(i=0; i<words; i++) put_bits(pb, 16, be2me_16(srcw[i]));
  72.     }else{
  73.         for(i=0; put_bits_count(pb)&31; i++)
  74.             put_bits(pb, 8, src[i]);
  75.         flush_put_bits(pb);
  76.         memcpy(pbBufPtr(pb), src+i, 2*words-i);
  77.         skip_put_bytes(pb, 2*words-i);
  78.     }
  79.     put_bits(pb, bits, be2me_16(srcw[words])>>(16-bits));
  80. }
  81. /* VLC decoding */
  82. //#define DEBUG_VLC
  83. #define GET_DATA(v, table, i, wrap, size) 
  84. {
  85.     const uint8_t *ptr = (const uint8_t *)table + i * wrap;
  86.     switch(size) {
  87.     case 1:
  88.         v = *(const uint8_t *)ptr;
  89.         break;
  90.     case 2:
  91.         v = *(const uint16_t *)ptr;
  92.         break;
  93.     default:
  94.         v = *(const uint32_t *)ptr;
  95.         break;
  96.     }
  97. }
  98. static int alloc_table(VLC *vlc, int size, int use_static)
  99. {
  100.     int index;
  101.     index = vlc->table_size;
  102.     vlc->table_size += size;
  103.     if (vlc->table_size > vlc->table_allocated) {
  104.         if(use_static>1)
  105.             abort(); //cant do anything, init_vlc() is used with too little memory
  106.         vlc->table_allocated += (1 << vlc->bits);
  107.         if(use_static)
  108.             vlc->table = ff_realloc_static(vlc->table,
  109.                                            sizeof(VLC_TYPE) * 2 * vlc->table_allocated);
  110.         else
  111.             vlc->table = av_realloc(vlc->table,
  112.                                     sizeof(VLC_TYPE) * 2 * vlc->table_allocated);
  113.         if (!vlc->table)
  114.             return -1;
  115.     }
  116.     return index;
  117. }
  118. static int build_table(VLC *vlc, int table_nb_bits,
  119.                        int nb_codes,
  120.                        const void *bits, int bits_wrap, int bits_size,
  121.                        const void *codes, int codes_wrap, int codes_size,
  122.                        const void *symbols, int symbols_wrap, int symbols_size,
  123.                        uint32_t code_prefix, int n_prefix, int flags)
  124. {
  125.     int i, j, k, n, table_size, table_index, nb, n1, index, code_prefix2, symbol;
  126.     uint32_t code;
  127.     VLC_TYPE (*table)[2];
  128.     table_size = 1 << table_nb_bits;
  129.     table_index = alloc_table(vlc, table_size, flags & (INIT_VLC_USE_STATIC|INIT_VLC_USE_NEW_STATIC));
  130. #ifdef DEBUG_VLC
  131.     av_log(NULL,AV_LOG_DEBUG,"new table index=%d size=%d code_prefix=%x n=%dn",
  132.            table_index, table_size, code_prefix, n_prefix);
  133. #endif
  134.     if (table_index < 0)
  135.         return -1;
  136.     table = &vlc->table[table_index];
  137.     for(i=0;i<table_size;i++) {
  138.         table[i][1] = 0; //bits
  139.         table[i][0] = -1; //codes
  140.     }
  141.     /* first pass: map codes and compute auxillary table sizes */
  142.     for(i=0;i<nb_codes;i++) {
  143.         GET_DATA(n, bits, i, bits_wrap, bits_size);
  144.         GET_DATA(code, codes, i, codes_wrap, codes_size);
  145.         /* we accept tables with holes */
  146.         if (n <= 0)
  147.             continue;
  148.         if (!symbols)
  149.             symbol = i;
  150.         else
  151.             GET_DATA(symbol, symbols, i, symbols_wrap, symbols_size);
  152. #if defined(DEBUG_VLC) && 0
  153.         av_log(NULL,AV_LOG_DEBUG,"i=%d n=%d code=0x%xn", i, n, code);
  154. #endif
  155.         /* if code matches the prefix, it is in the table */
  156.         n -= n_prefix;
  157.         if(flags & INIT_VLC_LE)
  158.             code_prefix2= code & (n_prefix>=32 ? 0xffffffff : (1 << n_prefix)-1);
  159.         else
  160.             code_prefix2= code >> n;
  161.         if (n > 0 && code_prefix2 == code_prefix) {
  162.             if (n <= table_nb_bits) {
  163.                 /* no need to add another table */
  164.                 j = (code << (table_nb_bits - n)) & (table_size - 1);
  165.                 nb = 1 << (table_nb_bits - n);
  166.                 for(k=0;k<nb;k++) {
  167.                     if(flags & INIT_VLC_LE)
  168.                         j = (code >> n_prefix) + (k<<n);
  169. #ifdef DEBUG_VLC
  170.                     av_log(NULL, AV_LOG_DEBUG, "%4x: code=%d n=%dn",
  171.                            j, i, n);
  172. #endif
  173.                     if (table[j][1] /*bits*/ != 0) {
  174.                         av_log(NULL, AV_LOG_ERROR, "incorrect codesn");
  175.                         return -1;
  176.                     }
  177.                     table[j][1] = n; //bits
  178.                     table[j][0] = symbol;
  179.                     j++;
  180.                 }
  181.             } else {
  182.                 n -= table_nb_bits;
  183.                 j = (code >> ((flags & INIT_VLC_LE) ? n_prefix : n)) & ((1 << table_nb_bits) - 1);
  184. #ifdef DEBUG_VLC
  185.                 av_log(NULL,AV_LOG_DEBUG,"%4x: n=%d (subtable)n",
  186.                        j, n);
  187. #endif
  188.                 /* compute table size */
  189.                 n1 = -table[j][1]; //bits
  190.                 if (n > n1)
  191.                     n1 = n;
  192.                 table[j][1] = -n1; //bits
  193.             }
  194.         }
  195.     }
  196.     /* second pass : fill auxillary tables recursively */
  197.     for(i=0;i<table_size;i++) {
  198.         n = table[i][1]; //bits
  199.         if (n < 0) {
  200.             n = -n;
  201.             if (n > table_nb_bits) {
  202.                 n = table_nb_bits;
  203.                 table[i][1] = -n; //bits
  204.             }
  205.             index = build_table(vlc, n, nb_codes,
  206.                                 bits, bits_wrap, bits_size,
  207.                                 codes, codes_wrap, codes_size,
  208.                                 symbols, symbols_wrap, symbols_size,
  209.                                 (flags & INIT_VLC_LE) ? (code_prefix | (i << n_prefix)) : ((code_prefix << table_nb_bits) | i),
  210.                                 n_prefix + table_nb_bits, flags);
  211.             if (index < 0)
  212.                 return -1;
  213.             /* note: realloc has been done, so reload tables */
  214.             table = &vlc->table[table_index];
  215.             table[i][0] = index; //code
  216.         }
  217.     }
  218.     return table_index;
  219. }
  220. /* Build VLC decoding tables suitable for use with get_vlc().
  221.    'nb_bits' set thee decoding table size (2^nb_bits) entries. The
  222.    bigger it is, the faster is the decoding. But it should not be too
  223.    big to save memory and L1 cache. '9' is a good compromise.
  224.    'nb_codes' : number of vlcs codes
  225.    'bits' : table which gives the size (in bits) of each vlc code.
  226.    'codes' : table which gives the bit pattern of of each vlc code.
  227.    'symbols' : table which gives the values to be returned from get_vlc().
  228.    'xxx_wrap' : give the number of bytes between each entry of the
  229.    'bits' or 'codes' tables.
  230.    'xxx_size' : gives the number of bytes of each entry of the 'bits'
  231.    or 'codes' tables.
  232.    'wrap' and 'size' allows to use any memory configuration and types
  233.    (byte/word/long) to store the 'bits', 'codes', and 'symbols' tables.
  234.    'use_static' should be set to 1 for tables, which should be freed
  235.    with av_free_static(), 0 if free_vlc() will be used.
  236. */
  237. int init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes,
  238.              const void *bits, int bits_wrap, int bits_size,
  239.              const void *codes, int codes_wrap, int codes_size,
  240.              const void *symbols, int symbols_wrap, int symbols_size,
  241.              int flags)
  242. {
  243.     vlc->bits = nb_bits;
  244.     if(flags & INIT_VLC_USE_NEW_STATIC){
  245.         if(vlc->table_size && vlc->table_size == vlc->table_allocated){
  246.             return 0;
  247.         }else if(vlc->table_size){
  248.             abort(); // fatal error, we are called on a partially initialized table
  249.         }
  250.     }else if(!(flags & INIT_VLC_USE_STATIC)) {
  251.         vlc->table = NULL;
  252.         vlc->table_allocated = 0;
  253.         vlc->table_size = 0;
  254.     } else {
  255.         /* Static tables are initially always NULL, return
  256.            if vlc->table != NULL to avoid double allocation */
  257.         if(vlc->table)
  258.             return 0;
  259.     }
  260. #ifdef DEBUG_VLC
  261.     av_log(NULL,AV_LOG_DEBUG,"build table nb_codes=%dn", nb_codes);
  262. #endif
  263.     if (build_table(vlc, nb_bits, nb_codes,
  264.                     bits, bits_wrap, bits_size,
  265.                     codes, codes_wrap, codes_size,
  266.                     symbols, symbols_wrap, symbols_size,
  267.                     0, 0, flags) < 0) {
  268.         av_freep(&vlc->table);
  269.         return -1;
  270.     }
  271.     if((flags & INIT_VLC_USE_NEW_STATIC) && vlc->table_size != vlc->table_allocated)
  272.         av_log(NULL, AV_LOG_ERROR, "needed %d had %dn", vlc->table_size, vlc->table_allocated);
  273.     return 0;
  274. }
  275. void free_vlc(VLC *vlc)
  276. {
  277.     av_freep(&vlc->table);
  278. }