bitstream.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:26k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*
  2.  * copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
  3.  *
  4.  * This file is part of FFmpeg.
  5.  *
  6.  * FFmpeg is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * FFmpeg is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with FFmpeg; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19.  */
  20. /**
  21.  * @file bitstream.h
  22.  * bitstream api header.
  23.  */
  24. #ifndef BITSTREAM_H
  25. #define BITSTREAM_H
  26. #define av_always_inline inline
  27. #define attribute_deprecated
  28. #include <inttypes.h>
  29. #include <stdlib.h>
  30. #ifdef __arm__
  31. #define CONFIG_ALIGN 1
  32. #endif
  33. #ifdef ROCKBOX_BIG_ENDIAN
  34. #define WORDS_BIGENDIAN
  35. #endif
  36. #include "bswap.h"
  37. extern const uint8_t ff_log2_tab[256];
  38. /*misc utility functions added to make it compile */
  39. static inline int av_log2(unsigned int v)
  40. {
  41.     int n;
  42.     n = 0;
  43.     if (v & 0xffff0000) {
  44.         v >>= 16;
  45.         n += 16;
  46.     }
  47.     if (v & 0xff00) {
  48.         v >>= 8;
  49.         n += 8;
  50.     }
  51.     n += ff_log2_tab[v];
  52.     return n;
  53. }
  54. #if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER)
  55. #define ALT_BITSTREAM_READER
  56. #endif
  57. //#define ALT_BITSTREAM_WRITER
  58. //#define ALIGNED_BITSTREAM_WRITER
  59. #if !defined(LIBMPEG2_BITSTREAM_READER) && !defined(A32_BITSTREAM_READER) && !defined(ALT_BITSTREAM_READER)
  60. #   ifdef ARCH_ARMV4L
  61. #       define A32_BITSTREAM_READER
  62. #   else
  63. #define ALT_BITSTREAM_READER
  64. //#define LIBMPEG2_BITSTREAM_READER
  65. //#define A32_BITSTREAM_READER
  66. #   endif
  67. #endif
  68. #define LIBMPEG2_BITSTREAM_READER_HACK //add BERO
  69. extern const uint8_t ff_reverse[256];
  70. #if defined(ARCH_X86)
  71. // avoid +32 for shift optimization (gcc should do that ...)
  72. static inline  int32_t NEG_SSR32( int32_t a, int8_t s){
  73.     asm ("sarl %1, %0nt"
  74.          : "+r" (a)
  75.          : "ic" ((uint8_t)(-s))
  76.     );
  77.     return a;
  78. }
  79. static inline uint32_t NEG_USR32(uint32_t a, int8_t s){
  80.     asm ("shrl %1, %0nt"
  81.          : "+r" (a)
  82.          : "ic" ((uint8_t)(-s))
  83.     );
  84.     return a;
  85. }
  86. #else
  87. #    define NEG_SSR32(a,s) ((( int32_t)(a))>>(32-(s)))
  88. #    define NEG_USR32(a,s) (((uint32_t)(a))>>(32-(s)))
  89. #endif
  90. /* bit output */
  91. /* buf and buf_end must be present and used by every alternative writer. */
  92. typedef struct PutBitContext {
  93. #ifdef ALT_BITSTREAM_WRITER
  94.     uint8_t *buf, *buf_end;
  95.     int index;
  96. #else
  97.     uint32_t bit_buf;
  98.     int bit_left;
  99.     uint8_t *buf, *buf_ptr, *buf_end;
  100. #endif
  101. } PutBitContext;
  102. static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
  103. {
  104.     if(buffer_size < 0) {
  105.         buffer_size = 0;
  106.         buffer = NULL;
  107.     }
  108.     s->buf = buffer;
  109.     s->buf_end = s->buf + buffer_size;
  110. #ifdef ALT_BITSTREAM_WRITER
  111.     s->index=0;
  112.     ((uint32_t*)(s->buf))[0]=0;
  113. //    memset(buffer, 0, buffer_size);
  114. #else
  115.     s->buf_ptr = s->buf;
  116.     s->bit_left=32;
  117.     s->bit_buf=0;
  118. #endif
  119. }
  120. /* return the number of bits output */
  121. static inline int put_bits_count(PutBitContext *s)
  122. {
  123. #ifdef ALT_BITSTREAM_WRITER
  124.     return s->index;
  125. #else
  126.     return (s->buf_ptr - s->buf) * 8 + 32 - s->bit_left;
  127. #endif
  128. }
  129. /* pad the end of the output stream with zeros */
  130. static inline void flush_put_bits(PutBitContext *s)
  131. {
  132. #ifdef ALT_BITSTREAM_WRITER
  133.     align_put_bits(s);
  134. #else
  135.     s->bit_buf<<= s->bit_left;
  136.     while (s->bit_left < 32) {
  137.         /* XXX: should test end of buffer */
  138.         *s->buf_ptr++=s->bit_buf >> 24;
  139.         s->bit_buf<<=8;
  140.         s->bit_left+=8;
  141.     }
  142.     s->bit_left=32;
  143.     s->bit_buf=0;
  144. #endif
  145. }
  146. void align_put_bits(PutBitContext *s);
  147. void ff_put_string(PutBitContext * pbc, char *s, int put_zero);
  148. /* bit input */
  149. /* buffer, buffer_end and size_in_bits must be present and used by every reader */
  150. typedef struct GetBitContext {
  151.     const uint8_t *buffer, *buffer_end;
  152. #ifdef ALT_BITSTREAM_READER
  153.     int index;
  154. #elif defined LIBMPEG2_BITSTREAM_READER
  155.     uint8_t *buffer_ptr;
  156.     uint32_t cache;
  157.     int bit_count;
  158. #elif defined A32_BITSTREAM_READER
  159.     uint32_t *buffer_ptr;
  160.     uint32_t cache0;
  161.     uint32_t cache1;
  162.     int bit_count;
  163. #endif
  164.     int size_in_bits;
  165. } GetBitContext;
  166. #define VLC_TYPE int16_t
  167. typedef struct VLC {
  168.     int bits;
  169.     VLC_TYPE (*table)[2]; /* code, bits */
  170.     int table_size, table_allocated;
  171. } VLC;
  172. typedef struct RL_VLC_ELEM {
  173.     int16_t level;
  174.     int8_t len;
  175.     uint8_t run;
  176. } RL_VLC_ELEM;
  177. #if defined(ARCH_SPARC) || defined(ARCH_ARMV4L) || defined(ARCH_MIPS) || defined(ARCH_BFIN)
  178. #define UNALIGNED_STORES_ARE_BAD
  179. #endif
  180. /* used to avoid missaligned exceptions on some archs (alpha, ...) */
  181. #if defined(ARCH_X86) || defined(CPU_COLDFIRE)
  182. #    define unaligned16(a) (*(const uint16_t*)(a))
  183. #    define unaligned32(a) (*(const uint32_t*)(a))
  184. #    define unaligned64(a) (*(const uint64_t*)(a))
  185. #else
  186. #    ifdef __GNUC__
  187. #    define unaligned(x)                                
  188. static inline uint##x##_t unaligned##x(const void *v) { 
  189.     struct Unaligned {                                  
  190.         uint##x##_t i;                                  
  191.     } __attribute__((packed));                          
  192.                                                         
  193.     return ((const struct Unaligned *) v)->i;           
  194. }
  195. #    elif defined(__DECC)
  196. #    define unaligned(x)                                        
  197. static inline uint##x##_t unaligned##x(const void *v) {         
  198.     return *(const __unaligned uint##x##_t *) v;                
  199. }
  200. #    else
  201. #    define unaligned(x)                                        
  202. static inline uint##x##_t unaligned##x(const void *v) {         
  203.     return *(const uint##x##_t *) v;                            
  204. }
  205. #    endif
  206. unaligned(16)
  207. unaligned(32)
  208. unaligned(64)
  209. #undef unaligned
  210. #endif /* defined(ARCH_X86) */
  211. #ifndef ALT_BITSTREAM_WRITER
  212. static inline void put_bits(PutBitContext *s, int n, unsigned int value)
  213. {
  214.     unsigned int bit_buf;
  215.     int bit_left;
  216.     // printf("put_bits=%d %xn", n, value);
  217.     // assert(n == 32 || value < (1U << n));
  218.     bit_buf = s->bit_buf;
  219.     bit_left = s->bit_left;
  220.     //    printf("n=%d value=%x cnt=%d buf=%xn", n, value, bit_cnt, bit_buf);
  221.     /* XXX: optimize */
  222.     if (n < bit_left) {
  223.         bit_buf = (bit_buf<<n) | value;
  224.         bit_left-=n;
  225.     } else {
  226.         bit_buf<<=bit_left;
  227.         bit_buf |= value >> (n - bit_left);
  228. #ifdef UNALIGNED_STORES_ARE_BAD
  229.         if (3 & (intptr_t) s->buf_ptr) {
  230.             s->buf_ptr[0] = bit_buf >> 24;
  231.             s->buf_ptr[1] = bit_buf >> 16;
  232.             s->buf_ptr[2] = bit_buf >>  8;
  233.             s->buf_ptr[3] = bit_buf      ;
  234.         } else
  235. #endif
  236.         *(uint32_t *)s->buf_ptr = be2me_32(bit_buf);
  237.         //printf("bitbuf = %08xn", bit_buf);
  238.         s->buf_ptr+=4;
  239.         bit_left+=32 - n;
  240.         bit_buf = value;
  241.     }
  242.     s->bit_buf = bit_buf;
  243.     s->bit_left = bit_left;
  244. }
  245. #endif
  246. #ifdef ALT_BITSTREAM_WRITER
  247. static inline void put_bits(PutBitContext *s, int n, unsigned int value)
  248. {
  249. #    ifdef ALIGNED_BITSTREAM_WRITER
  250. #        if defined(ARCH_X86)
  251.     asm volatile(
  252.         "movl %0, %%ecx                 nt"
  253.         "xorl %%eax, %%eax              nt"
  254.         "shrdl %%cl, %1, %%eax          nt"
  255.         "shrl %%cl, %1                  nt"
  256.         "movl %0, %%ecx                 nt"
  257.         "shrl $3, %%ecx                 nt"
  258.         "andl $0xFFFFFFFC, %%ecx        nt"
  259.         "bswapl %1                      nt"
  260.         "orl %1, (%2, %%ecx)            nt"
  261.         "bswapl %%eax                   nt"
  262.         "addl %3, %0                    nt"
  263.         "movl %%eax, 4(%2, %%ecx)       nt"
  264.         : "=&r" (s->index), "=&r" (value)
  265.         : "r" (s->buf), "r" (n), "0" (s->index), "1" (value<<(-n))
  266.         : "%eax", "%ecx"
  267.     );
  268. #        else
  269.     int index= s->index;
  270.     uint32_t *ptr= ((uint32_t *)s->buf)+(index>>5);
  271.     value<<= 32-n;
  272.     ptr[0] |= be2me_32(value>>(index&31));
  273.     ptr[1]  = be2me_32(value<<(32-(index&31)));
  274. //if(n>24) printf("%d %dn", n, value);
  275.     index+= n;
  276.     s->index= index;
  277. #        endif
  278. #    else //ALIGNED_BITSTREAM_WRITER
  279. #        if defined(ARCH_X86)
  280.     asm volatile(
  281.         "movl $7, %%ecx                 nt"
  282.         "andl %0, %%ecx                 nt"
  283.         "addl %3, %%ecx                 nt"
  284.         "negl %%ecx                     nt"
  285.         "shll %%cl, %1                  nt"
  286.         "bswapl %1                      nt"
  287.         "movl %0, %%ecx                 nt"
  288.         "shrl $3, %%ecx                 nt"
  289.         "orl %1, (%%ecx, %2)            nt"
  290.         "addl %3, %0                    nt"
  291.         "movl $0, 4(%%ecx, %2)          nt"
  292.         : "=&r" (s->index), "=&r" (value)
  293.         : "r" (s->buf), "r" (n), "0" (s->index), "1" (value)
  294.         : "%ecx"
  295.     );
  296. #        else
  297.     int index= s->index;
  298.     uint32_t *ptr= (uint32_t*)(((uint8_t *)s->buf)+(index>>3));
  299.     ptr[0] |= be2me_32(value<<(32-n-(index&7) ));
  300.     ptr[1] = 0;
  301. //if(n>24) printf("%d %dn", n, value);
  302.     index+= n;
  303.     s->index= index;
  304. #        endif
  305. #    endif //!ALIGNED_BITSTREAM_WRITER
  306. }
  307. #endif
  308. static inline uint8_t* pbBufPtr(PutBitContext *s)
  309. {
  310. #ifdef ALT_BITSTREAM_WRITER
  311.         return s->buf + (s->index>>3);
  312. #else
  313.         return s->buf_ptr;
  314. #endif
  315. }
  316. /**
  317.  *
  318.  * PutBitContext must be flushed & aligned to a byte boundary before calling this.
  319.  */
  320. static inline void skip_put_bytes(PutBitContext *s, int n){
  321.        // assert((put_bits_count(s)&7)==0);
  322. #ifdef ALT_BITSTREAM_WRITER
  323.         FIXME may need some cleaning of the buffer
  324.         s->index += n<<3;
  325. #else
  326.        // assert(s->bit_left==32);
  327.         s->buf_ptr += n;
  328. #endif
  329. }
  330. /**
  331.  * skips the given number of bits.
  332.  * must only be used if the actual values in the bitstream dont matter
  333.  */
  334. static inline void skip_put_bits(PutBitContext *s, int n){
  335. #ifdef ALT_BITSTREAM_WRITER
  336.     s->index += n;
  337. #else
  338.     s->bit_left -= n;
  339.     s->buf_ptr-= s->bit_left>>5;
  340.     s->bit_left &= 31;
  341. #endif
  342. }
  343. /**
  344.  * Changes the end of the buffer.
  345.  */
  346. static inline void set_put_bits_buffer_size(PutBitContext *s, int size){
  347.     s->buf_end= s->buf + size;
  348. }
  349. /* Bitstream reader API docs:
  350. name
  351.     abritary name which is used as prefix for the internal variables
  352. gb
  353.     getbitcontext
  354. OPEN_READER(name, gb)
  355.     loads gb into local variables
  356. CLOSE_READER(name, gb)
  357.     stores local vars in gb
  358. UPDATE_CACHE(name, gb)
  359.     refills the internal cache from the bitstream
  360.     after this call at least MIN_CACHE_BITS will be available,
  361. GET_CACHE(name, gb)
  362.     will output the contents of the internal cache, next bit is MSB of 32 or 64 bit (FIXME 64bit)
  363. SHOW_UBITS(name, gb, num)
  364.     will return the next num bits
  365. SHOW_SBITS(name, gb, num)
  366.     will return the next num bits and do sign extension
  367. SKIP_BITS(name, gb, num)
  368.     will skip over the next num bits
  369.     note, this is equivalent to SKIP_CACHE; SKIP_COUNTER
  370. SKIP_CACHE(name, gb, num)
  371.     will remove the next num bits from the cache (note SKIP_COUNTER MUST be called before UPDATE_CACHE / CLOSE_READER)
  372. SKIP_COUNTER(name, gb, num)
  373.     will increment the internal bit counter (see SKIP_CACHE & SKIP_BITS)
  374. LAST_SKIP_CACHE(name, gb, num)
  375.     will remove the next num bits from the cache if it is needed for UPDATE_CACHE otherwise it will do nothing
  376. LAST_SKIP_BITS(name, gb, num)
  377.     is equivalent to SKIP_LAST_CACHE; SKIP_COUNTER
  378. for examples see get_bits, show_bits, skip_bits, get_vlc
  379. */
  380. static inline int unaligned32_be(const void *v)
  381. {
  382. #ifdef CONFIG_ALIGN
  383.         const uint8_t *p=v;
  384.         return (((p[0]<<8) | p[1])<<16) | (p[2]<<8) | (p[3]);
  385. #else
  386.         return be2me_32( unaligned32(v)); //original
  387. #endif
  388. }
  389. static inline int unaligned32_le(const void *v)
  390. {
  391. #ifdef CONFIG_ALIGN
  392.        const uint8_t *p=v;
  393.        return (((p[3]<<8) | p[2])<<16) | (p[1]<<8) | (p[0]);
  394. #else
  395.        return le2me_32( unaligned32(v)); //original
  396. #endif
  397. }
  398. #ifdef ALT_BITSTREAM_READER
  399. #   define MIN_CACHE_BITS 25
  400. #   define OPEN_READER(name, gb)
  401.         int name##_index= (gb)->index;
  402.         int name##_cache= 0;
  403. #   define CLOSE_READER(name, gb)
  404.         (gb)->index= name##_index;
  405. # ifdef ALT_BITSTREAM_READER_LE
  406. #   define UPDATE_CACHE(name, gb)
  407.         name##_cache= unaligned32_le( ((const uint8_t *)(gb)->buffer)+(name##_index>>3) ) >> (name##_index&0x07);
  408. #   define SKIP_CACHE(name, gb, num)
  409.         name##_cache >>= (num);
  410. # else
  411. #   define UPDATE_CACHE(name, gb)
  412.         name##_cache= unaligned32_be( ((const uint8_t *)(gb)->buffer)+(name##_index>>3) ) << (name##_index&0x07);
  413. #   define SKIP_CACHE(name, gb, num)
  414.         name##_cache <<= (num);
  415. # endif
  416. // FIXME name?
  417. #   define SKIP_COUNTER(name, gb, num)
  418.         name##_index += (num);
  419. #   define SKIP_BITS(name, gb, num)
  420.         {
  421.             SKIP_CACHE(name, gb, num)
  422.             SKIP_COUNTER(name, gb, num)
  423.         }
  424. #   define LAST_SKIP_BITS(name, gb, num) SKIP_COUNTER(name, gb, num)
  425. #   define LAST_SKIP_CACHE(name, gb, num) ;
  426. # ifdef ALT_BITSTREAM_READER_LE
  427. #   define SHOW_UBITS(name, gb, num)
  428.         ((name##_cache) & (NEG_USR32(0xffffffff,num)))
  429. #   define SHOW_SBITS(name, gb, num)
  430.         NEG_SSR32((name##_cache)<<(32-(num)), num)
  431. # else
  432. #   define SHOW_UBITS(name, gb, num)
  433.         NEG_USR32(name##_cache, num)
  434. #   define SHOW_SBITS(name, gb, num)
  435.         NEG_SSR32(name##_cache, num)
  436. # endif
  437. #   define GET_CACHE(name, gb)
  438.         ((uint32_t)name##_cache)
  439. static inline int get_bits_count(GetBitContext *s){
  440.     return s->index;
  441. }
  442. static inline void skip_bits_long(GetBitContext *s, int n){
  443.     s->index += n;
  444. }
  445. #elif defined LIBMPEG2_BITSTREAM_READER
  446. //libmpeg2 like reader
  447. #   define MIN_CACHE_BITS 17
  448. #   define OPEN_READER(name, gb)
  449.         int name##_bit_count=(gb)->bit_count;
  450.         int name##_cache= (gb)->cache;
  451.         uint8_t * name##_buffer_ptr=(gb)->buffer_ptr;
  452. #   define CLOSE_READER(name, gb)
  453.         (gb)->bit_count= name##_bit_count;
  454.         (gb)->cache= name##_cache;
  455.         (gb)->buffer_ptr= name##_buffer_ptr;
  456. #ifdef LIBMPEG2_BITSTREAM_READER_HACK
  457. #   define UPDATE_CACHE(name, gb)
  458.     if(name##_bit_count >= 0){
  459.         name##_cache+= (int)be2me_16(*(uint16_t*)name##_buffer_ptr) << name##_bit_count;
  460.         name##_buffer_ptr += 2;
  461.         name##_bit_count-= 16;
  462.     }
  463. #else
  464. #   define UPDATE_CACHE(name, gb)
  465.     if(name##_bit_count >= 0){
  466.         name##_cache+= ((name##_buffer_ptr[0]<<8) + name##_buffer_ptr[1]) << name##_bit_count;
  467.         name##_buffer_ptr+=2;
  468.         name##_bit_count-= 16;
  469.     }
  470. #endif
  471. #   define SKIP_CACHE(name, gb, num)
  472.         name##_cache <<= (num);
  473. #   define SKIP_COUNTER(name, gb, num)
  474.         name##_bit_count += (num);
  475. #   define SKIP_BITS(name, gb, num)
  476.         {
  477.             SKIP_CACHE(name, gb, num)
  478.             SKIP_COUNTER(name, gb, num)
  479.         }
  480. #   define LAST_SKIP_BITS(name, gb, num) SKIP_BITS(name, gb, num)
  481. #   define LAST_SKIP_CACHE(name, gb, num) SKIP_CACHE(name, gb, num)
  482. #   define SHOW_UBITS(name, gb, num)
  483.         NEG_USR32(name##_cache, num)
  484. #   define SHOW_SBITS(name, gb, num)
  485.         NEG_SSR32(name##_cache, num)
  486. #   define GET_CACHE(name, gb)
  487.         ((uint32_t)name##_cache)
  488. static inline int get_bits_count(GetBitContext *s){
  489.     return (s->buffer_ptr - s->buffer)*8 - 16 + s->bit_count;
  490. }
  491. static inline void skip_bits_long(GetBitContext *s, int n){
  492.     OPEN_READER(re, s)
  493.     re_bit_count += n;
  494.     re_buffer_ptr += 2*(re_bit_count>>4);
  495.     re_bit_count &= 15;
  496.     re_cache = ((re_buffer_ptr[-2]<<8) + re_buffer_ptr[-1]) << (16+re_bit_count);
  497.     UPDATE_CACHE(re, s)
  498.     CLOSE_READER(re, s)
  499. }
  500. #elif defined A32_BITSTREAM_READER
  501. #   define MIN_CACHE_BITS 32
  502. #   define OPEN_READER(name, gb)
  503.         int name##_bit_count=(gb)->bit_count;
  504.         uint32_t name##_cache0= (gb)->cache0;
  505.         uint32_t name##_cache1= (gb)->cache1;
  506.         uint32_t * name##_buffer_ptr=(gb)->buffer_ptr;
  507. #   define CLOSE_READER(name, gb)
  508.         (gb)->bit_count= name##_bit_count;
  509.         (gb)->cache0= name##_cache0;
  510.         (gb)->cache1= name##_cache1;
  511.         (gb)->buffer_ptr= name##_buffer_ptr;
  512. #   define UPDATE_CACHE(name, gb)
  513.     if(name##_bit_count > 0){
  514.         const uint32_t next= be2me_32( *name##_buffer_ptr );
  515.         name##_cache0 |= NEG_USR32(next,name##_bit_count);
  516.         name##_cache1 |= next<<name##_bit_count;
  517.         name##_buffer_ptr++;
  518.         name##_bit_count-= 32;
  519.     }
  520. #if defined(ARCH_X86)
  521. #   define SKIP_CACHE(name, gb, num)
  522.         asm(
  523.             "shldl %2, %1, %0          nt"
  524.             "shll %2, %1               nt"
  525.             : "+r" (name##_cache0), "+r" (name##_cache1)
  526.             : "Ic" ((uint8_t)(num))
  527.            );
  528. #else
  529. #   define SKIP_CACHE(name, gb, num)
  530.         name##_cache0 <<= (num);
  531.         name##_cache0 |= NEG_USR32(name##_cache1,num);
  532.         name##_cache1 <<= (num);
  533. #endif
  534. #   define SKIP_COUNTER(name, gb, num)
  535.         name##_bit_count += (num);
  536. #   define SKIP_BITS(name, gb, num)
  537.         {
  538.             SKIP_CACHE(name, gb, num)
  539.             SKIP_COUNTER(name, gb, num)
  540.         }
  541. #   define LAST_SKIP_BITS(name, gb, num) SKIP_BITS(name, gb, num)
  542. #   define LAST_SKIP_CACHE(name, gb, num) SKIP_CACHE(name, gb, num)
  543. #   define SHOW_UBITS(name, gb, num)
  544.         NEG_USR32(name##_cache0, num)
  545. #   define SHOW_SBITS(name, gb, num)
  546.         NEG_SSR32(name##_cache0, num)
  547. #   define GET_CACHE(name, gb)
  548.         (name##_cache0)
  549. static inline int get_bits_count(GetBitContext *s){
  550.     return ((uint8_t*)s->buffer_ptr - s->buffer)*8 - 32 + s->bit_count;
  551. }
  552. static inline void skip_bits_long(GetBitContext *s, int n){
  553.     OPEN_READER(re, s)
  554.     re_bit_count += n;
  555.     re_buffer_ptr += re_bit_count>>5;
  556.     re_bit_count &= 31;
  557.     re_cache0 = be2me_32( re_buffer_ptr[-1] ) << re_bit_count;
  558.     re_cache1 = 0;
  559.     UPDATE_CACHE(re, s)
  560.     CLOSE_READER(re, s)
  561. }
  562. #endif
  563. /**
  564.  * read mpeg1 dc style vlc (sign bit + mantisse with no MSB).
  565.  * if MSB not set it is negative
  566.  * @param n length in bits
  567.  * @author BERO
  568.  */
  569. static inline int get_xbits(GetBitContext *s, int n){
  570.     register int sign;
  571.     register int32_t cache;
  572.     OPEN_READER(re, s)
  573.     UPDATE_CACHE(re, s)
  574.     cache = GET_CACHE(re,s);
  575.     sign=(~cache)>>31;
  576.     LAST_SKIP_BITS(re, s, n)
  577.     CLOSE_READER(re, s)
  578.     return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
  579. }
  580. static inline int get_sbits(GetBitContext *s, int n){
  581.     register int tmp;
  582.     OPEN_READER(re, s)
  583.     UPDATE_CACHE(re, s)
  584.     tmp= SHOW_SBITS(re, s, n);
  585.     LAST_SKIP_BITS(re, s, n)
  586.     CLOSE_READER(re, s)
  587.     return tmp;
  588. }
  589. /**
  590.  * reads 1-17 bits.
  591.  * Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
  592.  */
  593. static inline unsigned int get_bits(GetBitContext *s, int n){
  594.     register int tmp;
  595.     OPEN_READER(re, s)
  596.     UPDATE_CACHE(re, s)
  597.     tmp= SHOW_UBITS(re, s, n);
  598.     LAST_SKIP_BITS(re, s, n)
  599.     CLOSE_READER(re, s)
  600.     return tmp;
  601. }
  602. /**
  603.  * shows 1-17 bits.
  604.  * Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
  605.  */
  606. static inline unsigned int show_bits(GetBitContext *s, int n){
  607.     register int tmp;
  608.     OPEN_READER(re, s)
  609.     UPDATE_CACHE(re, s)
  610.     tmp= SHOW_UBITS(re, s, n);
  611. //    CLOSE_READER(re, s)
  612.     return tmp;
  613. }
  614. static inline void skip_bits(GetBitContext *s, int n){
  615. /* Note: gcc seems to optimize this to s->index+=n for the ALT_READER :)) */
  616.     OPEN_READER(re, s)
  617.     UPDATE_CACHE(re, s)
  618.     LAST_SKIP_BITS(re, s, n)
  619.     CLOSE_READER(re, s)
  620. }
  621. static inline unsigned int get_bits1(GetBitContext *s){
  622. #ifdef ALT_BITSTREAM_READER
  623.     int index= s->index;
  624.     uint8_t result= s->buffer[ index>>3 ];
  625. #ifdef ALT_BITSTREAM_READER_LE
  626.     result>>= (index&0x07);
  627.     result&= 1;
  628. #else
  629.     result<<= (index&0x07);
  630.     result>>= 8 - 1;
  631. #endif
  632.     index++;
  633.     s->index= index;
  634.     return result;
  635. #else
  636.     return get_bits(s, 1);
  637. #endif
  638. }
  639. static inline unsigned int show_bits1(GetBitContext *s){
  640.     return show_bits(s, 1);
  641. }
  642. static inline void skip_bits1(GetBitContext *s){
  643.     skip_bits(s, 1);
  644. }
  645. /**
  646.  * reads 0-32 bits.
  647.  */
  648. static inline unsigned int get_bits_long(GetBitContext *s, int n){
  649.     if(n<=17) return get_bits(s, n);
  650.     else{
  651. #ifdef ALT_BITSTREAM_READER_LE
  652.         int ret= get_bits(s, 16);
  653.         return ret | (get_bits(s, n-16) << 16);
  654. #else
  655.         int ret= get_bits(s, 16) << (n-16);
  656.         return ret | get_bits(s, n-16);
  657. #endif
  658.     }
  659. }
  660. /**
  661.  * shows 0-32 bits.
  662.  */
  663. static inline unsigned int show_bits_long(GetBitContext *s, int n){
  664.     if(n<=17) return show_bits(s, n);
  665.     else{
  666.         GetBitContext gb= *s;
  667.         int ret= get_bits_long(s, n);
  668.         *s= gb;
  669.         return ret;
  670.     }
  671. }
  672. /*
  673. static inline int check_marker(GetBitContext *s, const char *msg)
  674. {
  675.     int bit= get_bits1(s);
  676.     if(!bit)
  677.         av_log(NULL, AV_LOG_INFO, "Marker bit missing %sn", msg);
  678.     return bit;
  679. }
  680. */
  681. /**
  682.  * init GetBitContext.
  683.  * @param buffer bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE bytes larger then the actual read bits
  684.  * because some optimized bitstream readers read 32 or 64 bit at once and could read over the end
  685.  * @param bit_size the size of the buffer in bits
  686.  */
  687. static inline void init_get_bits(GetBitContext *s,
  688.                    const uint8_t *buffer, int bit_size)
  689. {
  690.     int buffer_size= (bit_size+7)>>3;
  691.     if(buffer_size < 0 || bit_size < 0) {
  692.         buffer_size = bit_size = 0;
  693.         buffer = NULL;
  694.     }
  695.     s->buffer= buffer;
  696.     s->size_in_bits= bit_size;
  697.     s->buffer_end= buffer + buffer_size;
  698. #ifdef ALT_BITSTREAM_READER
  699.     s->index=0;
  700. #elif defined LIBMPEG2_BITSTREAM_READER
  701.     s->buffer_ptr = (uint8_t*)((intptr_t)buffer&(~1));
  702.     s->bit_count = 16 + 8*((intptr_t)buffer&1);
  703.     skip_bits_long(s, 0);
  704. #elif defined A32_BITSTREAM_READER
  705.     s->buffer_ptr = (uint32_t*)((intptr_t)buffer&(~3));
  706.     s->bit_count = 32 + 8*((intptr_t)buffer&3);
  707.     skip_bits_long(s, 0);
  708. #endif
  709. }
  710. static inline void align_get_bits(GetBitContext *s)
  711. {
  712.     int n= (-get_bits_count(s)) & 7;
  713.     if(n) skip_bits(s, n);
  714. }
  715. int init_vlc(VLC *vlc, int nb_bits, int nb_codes,
  716.              const void *bits, int bits_wrap, int bits_size,
  717.              const void *codes, int codes_wrap, int codes_size,
  718.              int flags);
  719. #define INIT_VLC_USE_STATIC 1
  720. #define INIT_VLC_LE         2
  721. void free_vlc(VLC *vlc);
  722. /**
  723.  *
  724.  * if the vlc code is invalid and max_depth=1 than no bits will be removed
  725.  * if the vlc code is invalid and max_depth>1 than the number of bits removed
  726.  * is undefined
  727.  */
  728. #define GET_VLC(code, name, gb, table, bits, max_depth)
  729. {
  730.     int n, index, nb_bits;
  731.     index= SHOW_UBITS(name, gb, bits);
  732.     code = table[index][0];
  733.     n    = table[index][1];
  734.     if(max_depth > 1 && n < 0){
  735.         LAST_SKIP_BITS(name, gb, bits)
  736.         UPDATE_CACHE(name, gb)
  737.         nb_bits = -n;
  738.         index= SHOW_UBITS(name, gb, nb_bits) + code;
  739.         code = table[index][0];
  740.         n    = table[index][1];
  741.         if(max_depth > 2 && n < 0){
  742.             LAST_SKIP_BITS(name, gb, nb_bits)
  743.             UPDATE_CACHE(name, gb)
  744.             nb_bits = -n;
  745.             index= SHOW_UBITS(name, gb, nb_bits) + code;
  746.             code = table[index][0];
  747.             n    = table[index][1];
  748.         }
  749.     }
  750.     SKIP_BITS(name, gb, n)
  751. }
  752. #define GET_RL_VLC(level, run, name, gb, table, bits, max_depth, need_update)
  753. {
  754.     int n, index, nb_bits;
  755.     index= SHOW_UBITS(name, gb, bits);
  756.     level = table[index].level;
  757.     n     = table[index].len;
  758.     if(max_depth > 1 && n < 0){
  759.         SKIP_BITS(name, gb, bits)
  760.         if(need_update){
  761.             UPDATE_CACHE(name, gb)
  762.         }
  763.         nb_bits = -n;
  764.         index= SHOW_UBITS(name, gb, nb_bits) + level;
  765.         level = table[index].level;
  766.         n     = table[index].len;
  767.     }
  768.     run= table[index].run;
  769.     SKIP_BITS(name, gb, n)
  770. }
  771. /**
  772.  * parses a vlc code, faster then get_vlc()
  773.  * @param bits is the number of bits which will be read at once, must be
  774.  *             identical to nb_bits in init_vlc()
  775.  * @param max_depth is the number of times bits bits must be read to completely
  776.  *                  read the longest vlc code
  777.  *                  = (max_vlc_length + bits - 1) / bits
  778.  */
  779. static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE (*table)[2],
  780.                                   int bits, int max_depth)
  781. {
  782.     int code;
  783.     OPEN_READER(re, s)
  784.     UPDATE_CACHE(re, s)
  785.     GET_VLC(code, re, s, table, bits, max_depth)
  786.     CLOSE_READER(re, s)
  787.     return code;
  788. }
  789. #ifdef TRACE
  790. static inline void print_bin(int bits, int n){
  791.     int i;
  792.     for(i=n-1; i>=0; i--){
  793.         av_log(NULL, AV_LOG_DEBUG, "%d", (bits>>i)&1);
  794.     }
  795.     for(i=n; i<24; i++)
  796.         av_log(NULL, AV_LOG_DEBUG, " ");
  797. }
  798. static inline int get_bits_trace(GetBitContext *s, int n, char *file, const char *func, int line){
  799.     int r= get_bits(s, n);
  800.     print_bin(r, n);
  801.     av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d bit @%5d in %s %s:%dn", r, n, r, get_bits_count(s)-n, file, func, line);
  802.     return r;
  803. }
  804. static inline int get_vlc_trace(GetBitContext *s, VLC_TYPE (*table)[2], int bits, int max_depth, char *file, const char *func, int line){
  805.     int show= show_bits(s, 24);
  806.     int pos= get_bits_count(s);
  807.     int r= get_vlc2(s, table, bits, max_depth);
  808.     int len= get_bits_count(s) - pos;
  809.     int bits2= show>>(24-len);
  810.     print_bin(bits2, len);
  811.     av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d vlc @%5d in %s %s:%dn", bits2, len, r, pos, file, func, line);
  812.     return r;
  813. }
  814. static inline int get_xbits_trace(GetBitContext *s, int n, char *file, const char *func, int line){
  815.     int show= show_bits(s, n);
  816.     int r= get_xbits(s, n);
  817.     print_bin(show, n);
  818.     av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d xbt @%5d in %s %s:%dn", show, n, r, get_bits_count(s)-n, file, func, line);
  819.     return r;
  820. }
  821. #define get_bits(s, n)  get_bits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
  822. #define get_bits1(s)    get_bits_trace(s, 1, __FILE__, __PRETTY_FUNCTION__, __LINE__)
  823. #define get_xbits(s, n) get_xbits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
  824. #define get_vlc(s, vlc)            get_vlc_trace(s, (vlc)->table, (vlc)->bits, 3, __FILE__, __PRETTY_FUNCTION__, __LINE__)
  825. #define get_vlc2(s, tab, bits, max) get_vlc_trace(s, tab, bits, max, __FILE__, __PRETTY_FUNCTION__, __LINE__)
  826. #define tprintf(p, ...) av_log(p, AV_LOG_DEBUG, __VA_ARGS__)
  827. #else //TRACE
  828. #define tprintf(p, ...) {}
  829. #endif
  830. static inline int decode012(GetBitContext *gb){
  831.     int n;
  832.     n = get_bits1(gb);
  833.     if (n == 0)
  834.         return 0;
  835.     else
  836.         return get_bits1(gb) + 1;
  837. }
  838. #endif /* BITSTREAM_H */