2 * copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of FFmpeg.
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.
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.
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
23 * bitstream api header.
26 #ifndef AVCODEC_BITSTREAM_H
27 #define AVCODEC_BITSTREAM_H
32 #include "libavutil/bswap.h"
33 #include "libavutil/common.h"
34 #include "libavutil/intreadwrite.h"
35 #include "libavutil/log.h"
37 #if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER)
38 # define ALT_BITSTREAM_READER
41 //#define ALT_BITSTREAM_WRITER
42 //#define ALIGNED_BITSTREAM_WRITER
43 #if !defined(LIBMPEG2_BITSTREAM_READER) && !defined(A32_BITSTREAM_READER) && !defined(ALT_BITSTREAM_READER)
45 # define A32_BITSTREAM_READER
47 # define ALT_BITSTREAM_READER
48 //#define LIBMPEG2_BITSTREAM_READER
49 //#define A32_BITSTREAM_READER
53 extern const uint8_t ff_reverse
[256];
56 // avoid +32 for shift optimization (gcc should do that ...)
57 static inline int32_t NEG_SSR32( int32_t a
, int8_t s
){
58 __asm__ ("sarl %1, %0\n\t"
60 : "ic" ((uint8_t)(-s
))
64 static inline uint32_t NEG_USR32(uint32_t a
, int8_t s
){
65 __asm__ ("shrl %1, %0\n\t"
67 : "ic" ((uint8_t)(-s
))
72 # define NEG_SSR32(a,s) ((( int32_t)(a))>>(32-(s)))
73 # define NEG_USR32(a,s) (((uint32_t)(a))>>(32-(s)))
78 /* buf and buf_end must be present and used by every alternative writer. */
79 typedef struct PutBitContext
{
80 #ifdef ALT_BITSTREAM_WRITER
81 uint8_t *buf
, *buf_end
;
86 uint8_t *buf
, *buf_ptr
, *buf_end
;
90 static inline void init_put_bits(PutBitContext
*s
, uint8_t *buffer
, int buffer_size
)
98 s
->buf_end
= s
->buf
+ buffer_size
;
99 #ifdef ALT_BITSTREAM_WRITER
101 ((uint32_t*)(s
->buf
))[0]=0;
102 // memset(buffer, 0, buffer_size);
110 /* return the number of bits output */
111 static inline int put_bits_count(PutBitContext
*s
)
113 #ifdef ALT_BITSTREAM_WRITER
116 return (s
->buf_ptr
- s
->buf
) * 8 + 32 - s
->bit_left
;
120 /* pad the end of the output stream with zeros */
121 static inline void flush_put_bits(PutBitContext
*s
)
123 #ifdef ALT_BITSTREAM_WRITER
126 #ifndef BITSTREAM_WRITER_LE
127 s
->bit_buf
<<= s
->bit_left
;
129 while (s
->bit_left
< 32) {
130 /* XXX: should test end of buffer */
131 #ifdef BITSTREAM_WRITER_LE
132 *s
->buf_ptr
++=s
->bit_buf
;
135 *s
->buf_ptr
++=s
->bit_buf
>> 24;
145 void align_put_bits(PutBitContext
*s
);
146 void ff_put_string(PutBitContext
* pbc
, const char *s
, int put_zero
);
147 void ff_copy_bits(PutBitContext
*pb
, const uint8_t *src
, int length
);
150 /* buffer, buffer_end and size_in_bits must be present and used by every reader */
151 typedef struct GetBitContext
{
152 const uint8_t *buffer
, *buffer_end
;
153 #ifdef ALT_BITSTREAM_READER
155 #elif defined LIBMPEG2_BITSTREAM_READER
159 #elif defined A32_BITSTREAM_READER
160 uint32_t *buffer_ptr
;
168 #define VLC_TYPE int16_t
172 VLC_TYPE (*table
)[2]; ///< code, bits
173 int table_size
, table_allocated
;
176 typedef struct RL_VLC_ELEM
{
182 #ifndef ALT_BITSTREAM_WRITER
183 static inline void put_bits(PutBitContext
*s
, int n
, unsigned int value
)
185 unsigned int bit_buf
;
188 // printf("put_bits=%d %x\n", n, value);
189 assert(n
== 32 || value
< (1U << n
));
191 bit_buf
= s
->bit_buf
;
192 bit_left
= s
->bit_left
;
194 // printf("n=%d value=%x cnt=%d buf=%x\n", n, value, bit_cnt, bit_buf);
196 #ifdef BITSTREAM_WRITER_LE
197 bit_buf
|= value
<< (32 - bit_left
);
199 #if !HAVE_FAST_UNALIGNED
200 if (3 & (intptr_t) s
->buf_ptr
) {
201 AV_WL32(s
->buf_ptr
, bit_buf
);
204 *(uint32_t *)s
->buf_ptr
= le2me_32(bit_buf
);
206 bit_buf
= (bit_left
==32)?
0:value
>> bit_left
;
212 bit_buf
= (bit_buf
<<n
) | value
;
216 bit_buf
|= value
>> (n
- bit_left
);
217 #if !HAVE_FAST_UNALIGNED
218 if (3 & (intptr_t) s
->buf_ptr
) {
219 AV_WB32(s
->buf_ptr
, bit_buf
);
222 *(uint32_t *)s
->buf_ptr
= be2me_32(bit_buf
);
223 //printf("bitbuf = %08x\n", bit_buf);
230 s
->bit_buf
= bit_buf
;
231 s
->bit_left
= bit_left
;
236 #ifdef ALT_BITSTREAM_WRITER
237 static inline void put_bits(PutBitContext
*s
, int n
, unsigned int value
)
239 # ifdef ALIGNED_BITSTREAM_WRITER
242 "movl %0, %%ecx \n\t"
243 "xorl %%eax, %%eax \n\t"
244 "shrdl %%cl, %1, %%eax \n\t"
246 "movl %0, %%ecx \n\t"
247 "shrl $3, %%ecx \n\t"
248 "andl $0xFFFFFFFC, %%ecx \n\t"
250 "orl %1, (%2, %%ecx) \n\t"
253 "movl %%eax, 4(%2, %%ecx) \n\t"
254 : "=&r" (s
->index
), "=&r" (value
)
255 : "r" (s
->buf
), "r" (n
), "0" (s
->index
), "1" (value
<<(-n
))
260 uint32_t *ptr
= ((uint32_t *)s
->buf
)+(index
>>5);
264 ptr
[0] |= be2me_32(value
>>(index
&31));
265 ptr
[1] = be2me_32(value
<<(32-(index
&31)));
266 //if(n>24) printf("%d %d\n", n, value);
270 # else //ALIGNED_BITSTREAM_WRITER
273 "movl $7, %%ecx \n\t"
274 "andl %0, %%ecx \n\t"
275 "addl %3, %%ecx \n\t"
279 "movl %0, %%ecx \n\t"
280 "shrl $3, %%ecx \n\t"
281 "orl %1, (%%ecx, %2) \n\t"
283 "movl $0, 4(%%ecx, %2) \n\t"
284 : "=&r" (s
->index
), "=&r" (value
)
285 : "r" (s
->buf
), "r" (n
), "0" (s
->index
), "1" (value
)
290 uint32_t *ptr
= (uint32_t*)(((uint8_t *)s
->buf
)+(index
>>3));
292 ptr
[0] |= be2me_32(value
<<(32-n
-(index
&7) ));
294 //if(n>24) printf("%d %d\n", n, value);
298 # endif //!ALIGNED_BITSTREAM_WRITER
302 static inline void put_sbits(PutBitContext
*pb
, int bits
, int32_t val
)
304 assert(bits
>= 0 && bits
<= 31);
306 put_bits(pb
, bits
, val
& ((1<<bits
)-1));
310 static inline uint8_t* pbBufPtr(PutBitContext
*s
)
312 #ifdef ALT_BITSTREAM_WRITER
313 return s
->buf
+ (s
->index
>>3);
321 * PutBitContext must be flushed & aligned to a byte boundary before calling this.
323 static inline void skip_put_bytes(PutBitContext
*s
, int n
){
324 assert((put_bits_count(s
)&7)==0);
325 #ifdef ALT_BITSTREAM_WRITER
326 FIXME may need some cleaning of the buffer
329 assert(s
->bit_left
==32);
335 * Skips the given number of bits.
336 * Must only be used if the actual values in the bitstream do not matter.
338 static inline void skip_put_bits(PutBitContext
*s
, int n
){
339 #ifdef ALT_BITSTREAM_WRITER
343 s
->buf_ptr
-= s
->bit_left
>>5;
349 * Changes the end of the buffer.
351 static inline void set_put_bits_buffer_size(PutBitContext
*s
, int size
){
352 s
->buf_end
= s
->buf
+ size
;
355 /* Bitstream reader API docs:
357 arbitrary name which is used as prefix for the internal variables
362 OPEN_READER(name, gb)
363 loads gb into local variables
365 CLOSE_READER(name, gb)
366 stores local vars in gb
368 UPDATE_CACHE(name, gb)
369 refills the internal cache from the bitstream
370 after this call at least MIN_CACHE_BITS will be available,
373 will output the contents of the internal cache, next bit is MSB of 32 or 64 bit (FIXME 64bit)
375 SHOW_UBITS(name, gb, num)
376 will return the next num bits
378 SHOW_SBITS(name, gb, num)
379 will return the next num bits and do sign extension
381 SKIP_BITS(name, gb, num)
382 will skip over the next num bits
383 note, this is equivalent to SKIP_CACHE; SKIP_COUNTER
385 SKIP_CACHE(name, gb, num)
386 will remove the next num bits from the cache (note SKIP_COUNTER MUST be called before UPDATE_CACHE / CLOSE_READER)
388 SKIP_COUNTER(name, gb, num)
389 will increment the internal bit counter (see SKIP_CACHE & SKIP_BITS)
391 LAST_SKIP_CACHE(name, gb, num)
392 will remove the next num bits from the cache if it is needed for UPDATE_CACHE otherwise it will do nothing
394 LAST_SKIP_BITS(name, gb, num)
395 is equivalent to SKIP_LAST_CACHE; SKIP_COUNTER
397 for examples see get_bits, show_bits, skip_bits, get_vlc
400 #ifdef ALT_BITSTREAM_READER
401 # define MIN_CACHE_BITS 25
403 # define OPEN_READER(name, gb)\
404 int name##_index= (gb)->index;\
405 int name##_cache= 0;\
407 # define CLOSE_READER(name, gb)\
408 (gb)->index= name##_index;\
410 # ifdef ALT_BITSTREAM_READER_LE
411 # define UPDATE_CACHE(name, gb)\
412 name##_cache= AV_RL32( ((const uint8_t *)(gb)->buffer)+(name##_index>>3) ) >> (name##_index&0x07);\
414 # define SKIP_CACHE(name, gb, num)\
415 name##_cache >>= (num);
417 # define UPDATE_CACHE(name, gb)\
418 name##_cache= AV_RB32( ((const uint8_t *)(gb)->buffer)+(name##_index>>3) ) << (name##_index&0x07);\
420 # define SKIP_CACHE(name, gb, num)\
421 name##_cache <<= (num);
425 # define SKIP_COUNTER(name, gb, num)\
426 name##_index += (num);\
428 # define SKIP_BITS(name, gb, num)\
430 SKIP_CACHE(name, gb, num)\
431 SKIP_COUNTER(name, gb, num)\
434 # define LAST_SKIP_BITS(name, gb, num) SKIP_COUNTER(name, gb, num)
435 # define LAST_SKIP_CACHE(name, gb, num) ;
437 # ifdef ALT_BITSTREAM_READER_LE
438 # define SHOW_UBITS(name, gb, num)\
439 ((name##_cache) & (NEG_USR32(0xffffffff,num)))
441 # define SHOW_SBITS(name, gb, num)\
442 NEG_SSR32((name##_cache)<<(32-(num)), num)
444 # define SHOW_UBITS(name, gb, num)\
445 NEG_USR32(name##_cache, num)
447 # define SHOW_SBITS(name, gb, num)\
448 NEG_SSR32(name##_cache, num)
451 # define GET_CACHE(name, gb)\
452 ((uint32_t)name##_cache)
454 static inline int get_bits_count(GetBitContext
*s
){
458 static inline void skip_bits_long(GetBitContext
*s
, int n
){
462 #elif defined LIBMPEG2_BITSTREAM_READER
463 //libmpeg2 like reader
465 # define MIN_CACHE_BITS 17
467 # define OPEN_READER(name, gb)\
468 int name##_bit_count=(gb)->bit_count;\
469 int name##_cache= (gb)->cache;\
470 uint8_t * name##_buffer_ptr=(gb)->buffer_ptr;\
472 # define CLOSE_READER(name, gb)\
473 (gb)->bit_count= name##_bit_count;\
474 (gb)->cache= name##_cache;\
475 (gb)->buffer_ptr= name##_buffer_ptr;\
477 # define UPDATE_CACHE(name, gb)\
478 if(name##_bit_count >= 0){\
479 name##_cache+= AV_RB16(name##_buffer_ptr) << name##_bit_count; \
480 name##_buffer_ptr+=2;\
481 name##_bit_count-= 16;\
484 # define SKIP_CACHE(name, gb, num)\
485 name##_cache <<= (num);\
487 # define SKIP_COUNTER(name, gb, num)\
488 name##_bit_count += (num);\
490 # define SKIP_BITS(name, gb, num)\
492 SKIP_CACHE(name, gb, num)\
493 SKIP_COUNTER(name, gb, num)\
496 # define LAST_SKIP_BITS(name, gb, num) SKIP_BITS(name, gb, num)
497 # define LAST_SKIP_CACHE(name, gb, num) SKIP_CACHE(name, gb, num)
499 # define SHOW_UBITS(name, gb, num)\
500 NEG_USR32(name##_cache, num)
502 # define SHOW_SBITS(name, gb, num)\
503 NEG_SSR32(name##_cache, num)
505 # define GET_CACHE(name, gb)\
506 ((uint32_t)name##_cache)
508 static inline int get_bits_count(GetBitContext
*s
){
509 return (s
->buffer_ptr
- s
->buffer
)*8 - 16 + s
->bit_count
;
512 static inline void skip_bits_long(GetBitContext
*s
, int n
){
515 re_buffer_ptr
+= 2*(re_bit_count
>>4);
517 re_cache
= ((re_buffer_ptr
[-2]<<8) + re_buffer_ptr
[-1]) << (16+re_bit_count
);
522 #elif defined A32_BITSTREAM_READER
524 # define MIN_CACHE_BITS 32
526 # define OPEN_READER(name, gb)\
527 int name##_bit_count=(gb)->bit_count;\
528 uint32_t name##_cache0= (gb)->cache0;\
529 uint32_t name##_cache1= (gb)->cache1;\
530 uint32_t * name##_buffer_ptr=(gb)->buffer_ptr;\
532 # define CLOSE_READER(name, gb)\
533 (gb)->bit_count= name##_bit_count;\
534 (gb)->cache0= name##_cache0;\
535 (gb)->cache1= name##_cache1;\
536 (gb)->buffer_ptr= name##_buffer_ptr;\
538 # define UPDATE_CACHE(name, gb)\
539 if(name##_bit_count > 0){\
540 const uint32_t next= be2me_32( *name##_buffer_ptr );\
541 name##_cache0 |= NEG_USR32(next,name##_bit_count);\
542 name##_cache1 |= next<<name##_bit_count;\
543 name##_buffer_ptr++;\
544 name##_bit_count-= 32;\
548 # define SKIP_CACHE(name, gb, num)\
550 "shldl %2, %1, %0 \n\t"\
552 : "+r" (name##_cache0), "+r" (name##_cache1)\
553 : "Ic" ((uint8_t)(num))\
556 # define SKIP_CACHE(name, gb, num)\
557 name##_cache0 <<= (num);\
558 name##_cache0 |= NEG_USR32(name##_cache1,num);\
559 name##_cache1 <<= (num);
562 # define SKIP_COUNTER(name, gb, num)\
563 name##_bit_count += (num);\
565 # define SKIP_BITS(name, gb, num)\
567 SKIP_CACHE(name, gb, num)\
568 SKIP_COUNTER(name, gb, num)\
571 # define LAST_SKIP_BITS(name, gb, num) SKIP_BITS(name, gb, num)
572 # define LAST_SKIP_CACHE(name, gb, num) SKIP_CACHE(name, gb, num)
574 # define SHOW_UBITS(name, gb, num)\
575 NEG_USR32(name##_cache0, num)
577 # define SHOW_SBITS(name, gb, num)\
578 NEG_SSR32(name##_cache0, num)
580 # define GET_CACHE(name, gb)\
583 static inline int get_bits_count(GetBitContext
*s
){
584 return ((uint8_t*)s
->buffer_ptr
- s
->buffer
)*8 - 32 + s
->bit_count
;
587 static inline void skip_bits_long(GetBitContext
*s
, int n
){
590 re_buffer_ptr
+= re_bit_count
>>5;
592 re_cache0
= be2me_32( re_buffer_ptr
[-1] ) << re_bit_count
;
601 * read mpeg1 dc style vlc (sign bit + mantisse with no MSB).
602 * if MSB not set it is negative
603 * @param n length in bits
606 static inline int get_xbits(GetBitContext
*s
, int n
){
608 register int32_t cache
;
611 cache
= GET_CACHE(re
,s
);
613 LAST_SKIP_BITS(re
, s
, n
)
615 return (NEG_USR32(sign
^ cache
, n
) ^ sign
) - sign
;
618 static inline int get_sbits(GetBitContext
*s
, int n
){
622 tmp
= SHOW_SBITS(re
, s
, n
);
623 LAST_SKIP_BITS(re
, s
, n
)
630 * Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
632 static inline unsigned int get_bits(GetBitContext
*s
, int n
){
636 tmp
= SHOW_UBITS(re
, s
, n
);
637 LAST_SKIP_BITS(re
, s
, n
)
644 * Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
646 static inline unsigned int show_bits(GetBitContext
*s
, int n
){
650 tmp
= SHOW_UBITS(re
, s
, n
);
651 // CLOSE_READER(re, s)
655 static inline void skip_bits(GetBitContext
*s
, int n
){
656 //Note gcc seems to optimize this to s->index+=n for the ALT_READER :))
659 LAST_SKIP_BITS(re
, s
, n
)
663 static inline unsigned int get_bits1(GetBitContext
*s
){
664 #ifdef ALT_BITSTREAM_READER
666 uint8_t result
= s
->buffer
[ index
>>3 ];
667 #ifdef ALT_BITSTREAM_READER_LE
668 result
>>= (index
&0x07);
671 result
<<= (index
&0x07);
679 return get_bits(s
, 1);
683 static inline unsigned int show_bits1(GetBitContext
*s
){
684 return show_bits(s
, 1);
687 static inline void skip_bits1(GetBitContext
*s
){
694 static inline unsigned int get_bits_long(GetBitContext
*s
, int n
){
695 if(n
<=17) return get_bits(s
, n
);
697 #ifdef ALT_BITSTREAM_READER_LE
698 int ret
= get_bits(s
, 16);
699 return ret
| (get_bits(s
, n
-16) << 16);
701 int ret
= get_bits(s
, 16) << (n
-16);
702 return ret
| get_bits(s
, n
-16);
710 static inline unsigned int show_bits_long(GetBitContext
*s
, int n
){
711 if(n
<=17) return show_bits(s
, n
);
713 GetBitContext gb
= *s
;
714 int ret
= get_bits_long(s
, n
);
720 static inline int check_marker(GetBitContext
*s
, const char *msg
)
722 int bit
= get_bits1(s
);
724 av_log(NULL
, AV_LOG_INFO
, "Marker bit missing %s\n", msg
);
730 * init GetBitContext.
731 * @param buffer bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE bytes larger then the actual read bits
732 * because some optimized bitstream readers read 32 or 64 bit at once and could read over the end
733 * @param bit_size the size of the buffer in bits
735 static inline void init_get_bits(GetBitContext
*s
,
736 const uint8_t *buffer
, int bit_size
)
738 int buffer_size
= (bit_size
+7)>>3;
739 if(buffer_size
< 0 || bit_size
< 0) {
740 buffer_size
= bit_size
= 0;
745 s
->size_in_bits
= bit_size
;
746 s
->buffer_end
= buffer
+ buffer_size
;
747 #ifdef ALT_BITSTREAM_READER
749 #elif defined LIBMPEG2_BITSTREAM_READER
750 s
->buffer_ptr
= (uint8_t*)((intptr_t)buffer
&(~1));
751 s
->bit_count
= 16 + 8*((intptr_t)buffer
&1);
752 skip_bits_long(s
, 0);
753 #elif defined A32_BITSTREAM_READER
754 s
->buffer_ptr
= (uint32_t*)((intptr_t)buffer
&(~3));
755 s
->bit_count
= 32 + 8*((intptr_t)buffer
&3);
756 skip_bits_long(s
, 0);
760 static inline void align_get_bits(GetBitContext
*s
)
762 int n
= (-get_bits_count(s
)) & 7;
763 if(n
) skip_bits(s
, n
);
766 #define init_vlc(vlc, nb_bits, nb_codes,\
767 bits, bits_wrap, bits_size,\
768 codes, codes_wrap, codes_size,\
770 init_vlc_sparse(vlc, nb_bits, nb_codes,\
771 bits, bits_wrap, bits_size,\
772 codes, codes_wrap, codes_size,\
775 int init_vlc_sparse(VLC
*vlc
, int nb_bits
, int nb_codes
,
776 const void *bits
, int bits_wrap
, int bits_size
,
777 const void *codes
, int codes_wrap
, int codes_size
,
778 const void *symbols
, int symbols_wrap
, int symbols_size
,
780 #define INIT_VLC_USE_STATIC 1 ///< VERY strongly deprecated and forbidden
781 #define INIT_VLC_LE 2
782 #define INIT_VLC_USE_NEW_STATIC 4
783 void free_vlc(VLC
*vlc
);
785 #define INIT_VLC_STATIC(vlc, bits, a,b,c,d,e,f,g, static_size)\
787 static VLC_TYPE table[static_size][2];\
788 (vlc)->table= table;\
789 (vlc)->table_allocated= static_size;\
790 init_vlc(vlc, bits, a,b,c,d,e,f,g, INIT_VLC_USE_NEW_STATIC);\
796 * if the vlc code is invalid and max_depth=1 than no bits will be removed
797 * if the vlc code is invalid and max_depth>1 than the number of bits removed
800 #define GET_VLC(code, name, gb, table, bits, max_depth)\
802 int n, index, nb_bits;\
804 index= SHOW_UBITS(name, gb, bits);\
805 code = table[index][0];\
806 n = table[index][1];\
808 if(max_depth > 1 && n < 0){\
809 LAST_SKIP_BITS(name, gb, bits)\
810 UPDATE_CACHE(name, gb)\
814 index= SHOW_UBITS(name, gb, nb_bits) + code;\
815 code = table[index][0];\
816 n = table[index][1];\
817 if(max_depth > 2 && n < 0){\
818 LAST_SKIP_BITS(name, gb, nb_bits)\
819 UPDATE_CACHE(name, gb)\
823 index= SHOW_UBITS(name, gb, nb_bits) + code;\
824 code = table[index][0];\
825 n = table[index][1];\
828 SKIP_BITS(name, gb, n)\
831 #define GET_RL_VLC(level, run, name, gb, table, bits, max_depth, need_update)\
833 int n, index, nb_bits;\
835 index= SHOW_UBITS(name, gb, bits);\
836 level = table[index].level;\
837 n = table[index].len;\
839 if(max_depth > 1 && n < 0){\
840 SKIP_BITS(name, gb, bits)\
842 UPDATE_CACHE(name, gb)\
847 index= SHOW_UBITS(name, gb, nb_bits) + level;\
848 level = table[index].level;\
849 n = table[index].len;\
851 run= table[index].run;\
852 SKIP_BITS(name, gb, n)\
857 * parses a vlc code, faster then get_vlc()
858 * @param bits is the number of bits which will be read at once, must be
859 * identical to nb_bits in init_vlc()
860 * @param max_depth is the number of times bits bits must be read to completely
861 * read the longest vlc code
862 * = (max_vlc_length + bits - 1) / bits
864 static av_always_inline
int get_vlc2(GetBitContext
*s
, VLC_TYPE (*table
)[2],
865 int bits
, int max_depth
)
872 GET_VLC(code
, re
, s
, table
, bits
, max_depth
)
881 static inline void print_bin(int bits
, int n
){
884 for(i
=n
-1; i
>=0; i
--){
885 av_log(NULL
, AV_LOG_DEBUG
, "%d", (bits
>>i
)&1);
888 av_log(NULL
, AV_LOG_DEBUG
, " ");
891 static inline int get_bits_trace(GetBitContext
*s
, int n
, char *file
, const char *func
, int line
){
892 int r
= get_bits(s
, n
);
895 av_log(NULL
, AV_LOG_DEBUG
, "%5d %2d %3d bit @%5d in %s %s:%d\n", r
, n
, r
, get_bits_count(s
)-n
, file
, func
, line
);
898 static inline int get_vlc_trace(GetBitContext
*s
, VLC_TYPE (*table
)[2], int bits
, int max_depth
, char *file
, const char *func
, int line
){
899 int show
= show_bits(s
, 24);
900 int pos
= get_bits_count(s
);
901 int r
= get_vlc2(s
, table
, bits
, max_depth
);
902 int len
= get_bits_count(s
) - pos
;
903 int bits2
= show
>>(24-len
);
905 print_bin(bits2
, len
);
907 av_log(NULL
, AV_LOG_DEBUG
, "%5d %2d %3d vlc @%5d in %s %s:%d\n", bits2
, len
, r
, pos
, file
, func
, line
);
910 static inline int get_xbits_trace(GetBitContext
*s
, int n
, char *file
, const char *func
, int line
){
911 int show
= show_bits(s
, n
);
912 int r
= get_xbits(s
, n
);
915 av_log(NULL
, AV_LOG_DEBUG
, "%5d %2d %3d xbt @%5d in %s %s:%d\n", show
, n
, r
, get_bits_count(s
)-n
, file
, func
, line
);
919 #define get_bits(s, n) get_bits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
920 #define get_bits1(s) get_bits_trace(s, 1, __FILE__, __PRETTY_FUNCTION__, __LINE__)
921 #define get_xbits(s, n) get_xbits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
922 #define get_vlc(s, vlc) get_vlc_trace(s, (vlc)->table, (vlc)->bits, 3, __FILE__, __PRETTY_FUNCTION__, __LINE__)
923 #define get_vlc2(s, tab, bits, max) get_vlc_trace(s, tab, bits, max, __FILE__, __PRETTY_FUNCTION__, __LINE__)
925 #define tprintf(p, ...) av_log(p, AV_LOG_DEBUG, __VA_ARGS__)
928 #define tprintf(p, ...) {}
931 static inline int decode012(GetBitContext
*gb
){
937 return get_bits1(gb
) + 1;
940 static inline int decode210(GetBitContext
*gb
){
944 return 2 - get_bits1(gb
);
947 #endif /* AVCODEC_BITSTREAM_H */