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
22 * @file libavcodec/bitstream.h
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"
38 #if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER)
39 # define ALT_BITSTREAM_READER
42 //#define ALT_BITSTREAM_WRITER
43 //#define ALIGNED_BITSTREAM_WRITER
44 #if !defined(LIBMPEG2_BITSTREAM_READER) && !defined(A32_BITSTREAM_READER) && !defined(ALT_BITSTREAM_READER)
46 # define A32_BITSTREAM_READER
48 # define ALT_BITSTREAM_READER
49 //#define LIBMPEG2_BITSTREAM_READER
50 //#define A32_BITSTREAM_READER
54 extern const uint8_t ff_reverse
[256];
57 // avoid +32 for shift optimization (gcc should do that ...)
58 static inline int32_t NEG_SSR32( int32_t a
, int8_t s
){
59 __asm__ ("sarl %1, %0\n\t"
61 : "ic" ((uint8_t)(-s
))
65 static inline uint32_t NEG_USR32(uint32_t a
, int8_t s
){
66 __asm__ ("shrl %1, %0\n\t"
68 : "ic" ((uint8_t)(-s
))
73 # define NEG_SSR32(a,s) ((( int32_t)(a))>>(32-(s)))
74 # define NEG_USR32(a,s) (((uint32_t)(a))>>(32-(s)))
79 /* buf and buf_end must be present and used by every alternative writer. */
80 typedef struct PutBitContext
{
81 #ifdef ALT_BITSTREAM_WRITER
82 uint8_t *buf
, *buf_end
;
87 uint8_t *buf
, *buf_ptr
, *buf_end
;
92 static inline void init_put_bits(PutBitContext
*s
, uint8_t *buffer
, int buffer_size
)
99 s
->size_in_bits
= 8*buffer_size
;
101 s
->buf_end
= s
->buf
+ buffer_size
;
102 #ifdef ALT_BITSTREAM_WRITER
104 ((uint32_t*)(s
->buf
))[0]=0;
105 // memset(buffer, 0, buffer_size);
113 /* return the number of bits output */
114 static inline int put_bits_count(PutBitContext
*s
)
116 #ifdef ALT_BITSTREAM_WRITER
119 return (s
->buf_ptr
- s
->buf
) * 8 + 32 - s
->bit_left
;
123 /* pad the end of the output stream with zeros */
124 static inline void flush_put_bits(PutBitContext
*s
)
126 #ifdef ALT_BITSTREAM_WRITER
129 #ifndef BITSTREAM_WRITER_LE
130 s
->bit_buf
<<= s
->bit_left
;
132 while (s
->bit_left
< 32) {
133 /* XXX: should test end of buffer */
134 #ifdef BITSTREAM_WRITER_LE
135 *s
->buf_ptr
++=s
->bit_buf
;
138 *s
->buf_ptr
++=s
->bit_buf
>> 24;
148 void align_put_bits(PutBitContext
*s
);
149 void ff_put_string(PutBitContext
* pbc
, const char *s
, int put_zero
);
150 void ff_copy_bits(PutBitContext
*pb
, const uint8_t *src
, int length
);
153 /* buffer, buffer_end and size_in_bits must be present and used by every reader */
154 typedef struct GetBitContext
{
155 const uint8_t *buffer
, *buffer_end
;
156 #ifdef ALT_BITSTREAM_READER
158 #elif defined LIBMPEG2_BITSTREAM_READER
162 #elif defined A32_BITSTREAM_READER
163 uint32_t *buffer_ptr
;
171 #define VLC_TYPE int16_t
175 VLC_TYPE (*table
)[2]; ///< code, bits
176 int table_size
, table_allocated
;
179 typedef struct RL_VLC_ELEM
{
185 #ifndef ALT_BITSTREAM_WRITER
186 static inline void put_bits(PutBitContext
*s
, int n
, unsigned int value
)
188 unsigned int bit_buf
;
191 // printf("put_bits=%d %x\n", n, value);
192 assert(n
== 32 || value
< (1U << n
));
194 bit_buf
= s
->bit_buf
;
195 bit_left
= s
->bit_left
;
197 // printf("n=%d value=%x cnt=%d buf=%x\n", n, value, bit_cnt, bit_buf);
199 #ifdef BITSTREAM_WRITER_LE
200 bit_buf
|= value
<< (32 - bit_left
);
202 #if !HAVE_FAST_UNALIGNED
203 if (3 & (intptr_t) s
->buf_ptr
) {
204 AV_WL32(s
->buf_ptr
, bit_buf
);
207 *(uint32_t *)s
->buf_ptr
= le2me_32(bit_buf
);
209 bit_buf
= (bit_left
==32)?0:value
>> bit_left
;
215 bit_buf
= (bit_buf
<<n
) | value
;
219 bit_buf
|= value
>> (n
- bit_left
);
220 #if !HAVE_FAST_UNALIGNED
221 if (3 & (intptr_t) s
->buf_ptr
) {
222 AV_WB32(s
->buf_ptr
, bit_buf
);
225 *(uint32_t *)s
->buf_ptr
= be2me_32(bit_buf
);
226 //printf("bitbuf = %08x\n", bit_buf);
233 s
->bit_buf
= bit_buf
;
234 s
->bit_left
= bit_left
;
239 #ifdef ALT_BITSTREAM_WRITER
240 static inline void put_bits(PutBitContext
*s
, int n
, unsigned int value
)
242 # ifdef ALIGNED_BITSTREAM_WRITER
245 "movl %0, %%ecx \n\t"
246 "xorl %%eax, %%eax \n\t"
247 "shrdl %%cl, %1, %%eax \n\t"
249 "movl %0, %%ecx \n\t"
250 "shrl $3, %%ecx \n\t"
251 "andl $0xFFFFFFFC, %%ecx \n\t"
253 "orl %1, (%2, %%ecx) \n\t"
256 "movl %%eax, 4(%2, %%ecx) \n\t"
257 : "=&r" (s
->index
), "=&r" (value
)
258 : "r" (s
->buf
), "r" (n
), "0" (s
->index
), "1" (value
<<(-n
))
263 uint32_t *ptr
= ((uint32_t *)s
->buf
)+(index
>>5);
267 ptr
[0] |= be2me_32(value
>>(index
&31));
268 ptr
[1] = be2me_32(value
<<(32-(index
&31)));
269 //if(n>24) printf("%d %d\n", n, value);
273 # else //ALIGNED_BITSTREAM_WRITER
276 "movl $7, %%ecx \n\t"
277 "andl %0, %%ecx \n\t"
278 "addl %3, %%ecx \n\t"
282 "movl %0, %%ecx \n\t"
283 "shrl $3, %%ecx \n\t"
284 "orl %1, (%%ecx, %2) \n\t"
286 "movl $0, 4(%%ecx, %2) \n\t"
287 : "=&r" (s
->index
), "=&r" (value
)
288 : "r" (s
->buf
), "r" (n
), "0" (s
->index
), "1" (value
)
293 uint32_t *ptr
= (uint32_t*)(((uint8_t *)s
->buf
)+(index
>>3));
295 ptr
[0] |= be2me_32(value
<<(32-n
-(index
&7) ));
297 //if(n>24) printf("%d %d\n", n, value);
301 # endif //!ALIGNED_BITSTREAM_WRITER
305 static inline void put_sbits(PutBitContext
*pb
, int bits
, int32_t val
)
307 assert(bits
>= 0 && bits
<= 31);
309 put_bits(pb
, bits
, val
& ((1<<bits
)-1));
313 static inline uint8_t* pbBufPtr(PutBitContext
*s
)
315 #ifdef ALT_BITSTREAM_WRITER
316 return s
->buf
+ (s
->index
>>3);
324 * PutBitContext must be flushed & aligned to a byte boundary before calling this.
326 static inline void skip_put_bytes(PutBitContext
*s
, int n
){
327 assert((put_bits_count(s
)&7)==0);
328 #ifdef ALT_BITSTREAM_WRITER
329 FIXME may need some cleaning of the buffer
332 assert(s
->bit_left
==32);
338 * Skips the given number of bits.
339 * Must only be used if the actual values in the bitstream do not matter.
341 static inline void skip_put_bits(PutBitContext
*s
, int n
){
342 #ifdef ALT_BITSTREAM_WRITER
346 s
->buf_ptr
-= s
->bit_left
>>5;
352 * Changes the end of the buffer.
354 static inline void set_put_bits_buffer_size(PutBitContext
*s
, int size
){
355 s
->buf_end
= s
->buf
+ size
;
358 /* Bitstream reader API docs:
360 arbitrary name which is used as prefix for the internal variables
365 OPEN_READER(name, gb)
366 loads gb into local variables
368 CLOSE_READER(name, gb)
369 stores local vars in gb
371 UPDATE_CACHE(name, gb)
372 refills the internal cache from the bitstream
373 after this call at least MIN_CACHE_BITS will be available,
376 will output the contents of the internal cache, next bit is MSB of 32 or 64 bit (FIXME 64bit)
378 SHOW_UBITS(name, gb, num)
379 will return the next num bits
381 SHOW_SBITS(name, gb, num)
382 will return the next num bits and do sign extension
384 SKIP_BITS(name, gb, num)
385 will skip over the next num bits
386 note, this is equivalent to SKIP_CACHE; SKIP_COUNTER
388 SKIP_CACHE(name, gb, num)
389 will remove the next num bits from the cache (note SKIP_COUNTER MUST be called before UPDATE_CACHE / CLOSE_READER)
391 SKIP_COUNTER(name, gb, num)
392 will increment the internal bit counter (see SKIP_CACHE & SKIP_BITS)
394 LAST_SKIP_CACHE(name, gb, num)
395 will remove the next num bits from the cache if it is needed for UPDATE_CACHE otherwise it will do nothing
397 LAST_SKIP_BITS(name, gb, num)
398 is equivalent to SKIP_LAST_CACHE; SKIP_COUNTER
400 for examples see get_bits, show_bits, skip_bits, get_vlc
403 #ifdef ALT_BITSTREAM_READER
404 # define MIN_CACHE_BITS 25
406 # define OPEN_READER(name, gb)\
407 int name##_index= (gb)->index;\
408 int name##_cache= 0;\
410 # define CLOSE_READER(name, gb)\
411 (gb)->index= name##_index;\
413 # ifdef ALT_BITSTREAM_READER_LE
414 # define UPDATE_CACHE(name, gb)\
415 name##_cache= AV_RL32( ((const uint8_t *)(gb)->buffer)+(name##_index>>3) ) >> (name##_index&0x07);\
417 # define SKIP_CACHE(name, gb, num)\
418 name##_cache >>= (num);
420 # define UPDATE_CACHE(name, gb)\
421 name##_cache= AV_RB32( ((const uint8_t *)(gb)->buffer)+(name##_index>>3) ) << (name##_index&0x07);\
423 # define SKIP_CACHE(name, gb, num)\
424 name##_cache <<= (num);
428 # define SKIP_COUNTER(name, gb, num)\
429 name##_index += (num);\
431 # define SKIP_BITS(name, gb, num)\
433 SKIP_CACHE(name, gb, num)\
434 SKIP_COUNTER(name, gb, num)\
437 # define LAST_SKIP_BITS(name, gb, num) SKIP_COUNTER(name, gb, num)
438 # define LAST_SKIP_CACHE(name, gb, num) ;
440 # ifdef ALT_BITSTREAM_READER_LE
441 # define SHOW_UBITS(name, gb, num)\
442 ((name##_cache) & (NEG_USR32(0xffffffff,num)))
444 # define SHOW_SBITS(name, gb, num)\
445 NEG_SSR32((name##_cache)<<(32-(num)), num)
447 # define SHOW_UBITS(name, gb, num)\
448 NEG_USR32(name##_cache, num)
450 # define SHOW_SBITS(name, gb, num)\
451 NEG_SSR32(name##_cache, num)
454 # define GET_CACHE(name, gb)\
455 ((uint32_t)name##_cache)
457 static inline int get_bits_count(GetBitContext
*s
){
461 static inline void skip_bits_long(GetBitContext
*s
, int n
){
465 #elif defined LIBMPEG2_BITSTREAM_READER
466 //libmpeg2 like reader
468 # define MIN_CACHE_BITS 17
470 # define OPEN_READER(name, gb)\
471 int name##_bit_count=(gb)->bit_count;\
472 int name##_cache= (gb)->cache;\
473 uint8_t * name##_buffer_ptr=(gb)->buffer_ptr;\
475 # define CLOSE_READER(name, gb)\
476 (gb)->bit_count= name##_bit_count;\
477 (gb)->cache= name##_cache;\
478 (gb)->buffer_ptr= name##_buffer_ptr;\
480 # define UPDATE_CACHE(name, gb)\
481 if(name##_bit_count >= 0){\
482 name##_cache+= AV_RB16(name##_buffer_ptr) << name##_bit_count; \
483 name##_buffer_ptr+=2;\
484 name##_bit_count-= 16;\
487 # define SKIP_CACHE(name, gb, num)\
488 name##_cache <<= (num);\
490 # define SKIP_COUNTER(name, gb, num)\
491 name##_bit_count += (num);\
493 # define SKIP_BITS(name, gb, num)\
495 SKIP_CACHE(name, gb, num)\
496 SKIP_COUNTER(name, gb, num)\
499 # define LAST_SKIP_BITS(name, gb, num) SKIP_BITS(name, gb, num)
500 # define LAST_SKIP_CACHE(name, gb, num) SKIP_CACHE(name, gb, num)
502 # define SHOW_UBITS(name, gb, num)\
503 NEG_USR32(name##_cache, num)
505 # define SHOW_SBITS(name, gb, num)\
506 NEG_SSR32(name##_cache, num)
508 # define GET_CACHE(name, gb)\
509 ((uint32_t)name##_cache)
511 static inline int get_bits_count(GetBitContext
*s
){
512 return (s
->buffer_ptr
- s
->buffer
)*8 - 16 + s
->bit_count
;
515 static inline void skip_bits_long(GetBitContext
*s
, int n
){
518 re_buffer_ptr
+= 2*(re_bit_count
>>4);
520 re_cache
= ((re_buffer_ptr
[-2]<<8) + re_buffer_ptr
[-1]) << (16+re_bit_count
);
525 #elif defined A32_BITSTREAM_READER
527 # define MIN_CACHE_BITS 32
529 # define OPEN_READER(name, gb)\
530 int name##_bit_count=(gb)->bit_count;\
531 uint32_t name##_cache0= (gb)->cache0;\
532 uint32_t name##_cache1= (gb)->cache1;\
533 uint32_t * name##_buffer_ptr=(gb)->buffer_ptr;\
535 # define CLOSE_READER(name, gb)\
536 (gb)->bit_count= name##_bit_count;\
537 (gb)->cache0= name##_cache0;\
538 (gb)->cache1= name##_cache1;\
539 (gb)->buffer_ptr= name##_buffer_ptr;\
541 # define UPDATE_CACHE(name, gb)\
542 if(name##_bit_count > 0){\
543 const uint32_t next= be2me_32( *name##_buffer_ptr );\
544 name##_cache0 |= NEG_USR32(next,name##_bit_count);\
545 name##_cache1 |= next<<name##_bit_count;\
546 name##_buffer_ptr++;\
547 name##_bit_count-= 32;\
551 # define SKIP_CACHE(name, gb, num)\
553 "shldl %2, %1, %0 \n\t"\
555 : "+r" (name##_cache0), "+r" (name##_cache1)\
556 : "Ic" ((uint8_t)(num))\
559 # define SKIP_CACHE(name, gb, num)\
560 name##_cache0 <<= (num);\
561 name##_cache0 |= NEG_USR32(name##_cache1,num);\
562 name##_cache1 <<= (num);
565 # define SKIP_COUNTER(name, gb, num)\
566 name##_bit_count += (num);\
568 # define SKIP_BITS(name, gb, num)\
570 SKIP_CACHE(name, gb, num)\
571 SKIP_COUNTER(name, gb, num)\
574 # define LAST_SKIP_BITS(name, gb, num) SKIP_BITS(name, gb, num)
575 # define LAST_SKIP_CACHE(name, gb, num) SKIP_CACHE(name, gb, num)
577 # define SHOW_UBITS(name, gb, num)\
578 NEG_USR32(name##_cache0, num)
580 # define SHOW_SBITS(name, gb, num)\
581 NEG_SSR32(name##_cache0, num)
583 # define GET_CACHE(name, gb)\
586 static inline int get_bits_count(GetBitContext
*s
){
587 return ((uint8_t*)s
->buffer_ptr
- s
->buffer
)*8 - 32 + s
->bit_count
;
590 static inline void skip_bits_long(GetBitContext
*s
, int n
){
593 re_buffer_ptr
+= re_bit_count
>>5;
595 re_cache0
= be2me_32( re_buffer_ptr
[-1] ) << re_bit_count
;
604 * read mpeg1 dc style vlc (sign bit + mantisse with no MSB).
605 * if MSB not set it is negative
606 * @param n length in bits
609 static inline int get_xbits(GetBitContext
*s
, int n
){
611 register int32_t cache
;
614 cache
= GET_CACHE(re
,s
);
616 LAST_SKIP_BITS(re
, s
, n
)
618 return (NEG_USR32(sign
^ cache
, n
) ^ sign
) - sign
;
621 static inline int get_sbits(GetBitContext
*s
, int n
){
625 tmp
= SHOW_SBITS(re
, s
, n
);
626 LAST_SKIP_BITS(re
, s
, n
)
633 * Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
635 static inline unsigned int get_bits(GetBitContext
*s
, int n
){
639 tmp
= SHOW_UBITS(re
, s
, n
);
640 LAST_SKIP_BITS(re
, s
, n
)
647 * Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
649 static inline unsigned int show_bits(GetBitContext
*s
, int n
){
653 tmp
= SHOW_UBITS(re
, s
, n
);
654 // CLOSE_READER(re, s)
658 static inline void skip_bits(GetBitContext
*s
, int n
){
659 //Note gcc seems to optimize this to s->index+=n for the ALT_READER :))
662 LAST_SKIP_BITS(re
, s
, n
)
666 static inline unsigned int get_bits1(GetBitContext
*s
){
667 #ifdef ALT_BITSTREAM_READER
669 uint8_t result
= s
->buffer
[ index
>>3 ];
670 #ifdef ALT_BITSTREAM_READER_LE
671 result
>>= (index
&0x07);
674 result
<<= (index
&0x07);
682 return get_bits(s
, 1);
686 static inline unsigned int show_bits1(GetBitContext
*s
){
687 return show_bits(s
, 1);
690 static inline void skip_bits1(GetBitContext
*s
){
697 static inline unsigned int get_bits_long(GetBitContext
*s
, int n
){
698 if(n
<=17) return get_bits(s
, n
);
700 #ifdef ALT_BITSTREAM_READER_LE
701 int ret
= get_bits(s
, 16);
702 return ret
| (get_bits(s
, n
-16) << 16);
704 int ret
= get_bits(s
, 16) << (n
-16);
705 return ret
| get_bits(s
, n
-16);
711 * reads 0-32 bits as a signed integer.
713 static inline int get_sbits_long(GetBitContext
*s
, int n
) {
714 return sign_extend(get_bits_long(s
, n
), n
);
720 static inline unsigned int show_bits_long(GetBitContext
*s
, int n
){
721 if(n
<=17) return show_bits(s
, n
);
723 GetBitContext gb
= *s
;
724 return get_bits_long(&gb
, n
);
728 static inline int check_marker(GetBitContext
*s
, const char *msg
)
730 int bit
= get_bits1(s
);
732 av_log(NULL
, AV_LOG_INFO
, "Marker bit missing %s\n", msg
);
738 * init GetBitContext.
739 * @param buffer bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE bytes larger then the actual read bits
740 * because some optimized bitstream readers read 32 or 64 bit at once and could read over the end
741 * @param bit_size the size of the buffer in bits
743 static inline void init_get_bits(GetBitContext
*s
,
744 const uint8_t *buffer
, int bit_size
)
746 int buffer_size
= (bit_size
+7)>>3;
747 if(buffer_size
< 0 || bit_size
< 0) {
748 buffer_size
= bit_size
= 0;
753 s
->size_in_bits
= bit_size
;
754 s
->buffer_end
= buffer
+ buffer_size
;
755 #ifdef ALT_BITSTREAM_READER
757 #elif defined LIBMPEG2_BITSTREAM_READER
758 s
->buffer_ptr
= (uint8_t*)((intptr_t)buffer
&(~1));
759 s
->bit_count
= 16 + 8*((intptr_t)buffer
&1);
760 skip_bits_long(s
, 0);
761 #elif defined A32_BITSTREAM_READER
762 s
->buffer_ptr
= (uint32_t*)((intptr_t)buffer
&(~3));
763 s
->bit_count
= 32 + 8*((intptr_t)buffer
&3);
764 skip_bits_long(s
, 0);
768 static inline void align_get_bits(GetBitContext
*s
)
770 int n
= (-get_bits_count(s
)) & 7;
771 if(n
) skip_bits(s
, n
);
774 #define init_vlc(vlc, nb_bits, nb_codes,\
775 bits, bits_wrap, bits_size,\
776 codes, codes_wrap, codes_size,\
778 init_vlc_sparse(vlc, nb_bits, nb_codes,\
779 bits, bits_wrap, bits_size,\
780 codes, codes_wrap, codes_size,\
783 int init_vlc_sparse(VLC
*vlc
, int nb_bits
, int nb_codes
,
784 const void *bits
, int bits_wrap
, int bits_size
,
785 const void *codes
, int codes_wrap
, int codes_size
,
786 const void *symbols
, int symbols_wrap
, int symbols_size
,
788 #define INIT_VLC_USE_STATIC 1 ///< VERY strongly deprecated and forbidden
789 #define INIT_VLC_LE 2
790 #define INIT_VLC_USE_NEW_STATIC 4
791 void free_vlc(VLC
*vlc
);
793 #define INIT_VLC_STATIC(vlc, bits, a,b,c,d,e,f,g, static_size)\
795 static VLC_TYPE table[static_size][2];\
796 (vlc)->table= table;\
797 (vlc)->table_allocated= static_size;\
798 init_vlc(vlc, bits, a,b,c,d,e,f,g, INIT_VLC_USE_NEW_STATIC);\
804 * if the vlc code is invalid and max_depth=1 than no bits will be removed
805 * if the vlc code is invalid and max_depth>1 than the number of bits removed
808 #define GET_VLC(code, name, gb, table, bits, max_depth)\
810 int n, index, nb_bits;\
812 index= SHOW_UBITS(name, gb, bits);\
813 code = table[index][0];\
814 n = table[index][1];\
816 if(max_depth > 1 && n < 0){\
817 LAST_SKIP_BITS(name, gb, bits)\
818 UPDATE_CACHE(name, gb)\
822 index= SHOW_UBITS(name, gb, nb_bits) + code;\
823 code = table[index][0];\
824 n = table[index][1];\
825 if(max_depth > 2 && n < 0){\
826 LAST_SKIP_BITS(name, gb, nb_bits)\
827 UPDATE_CACHE(name, gb)\
831 index= SHOW_UBITS(name, gb, nb_bits) + code;\
832 code = table[index][0];\
833 n = table[index][1];\
836 SKIP_BITS(name, gb, n)\
839 #define GET_RL_VLC(level, run, name, gb, table, bits, max_depth, need_update)\
841 int n, index, nb_bits;\
843 index= SHOW_UBITS(name, gb, bits);\
844 level = table[index].level;\
845 n = table[index].len;\
847 if(max_depth > 1 && n < 0){\
848 SKIP_BITS(name, gb, bits)\
850 UPDATE_CACHE(name, gb)\
855 index= SHOW_UBITS(name, gb, nb_bits) + level;\
856 level = table[index].level;\
857 n = table[index].len;\
859 run= table[index].run;\
860 SKIP_BITS(name, gb, n)\
865 * parses a vlc code, faster then get_vlc()
866 * @param bits is the number of bits which will be read at once, must be
867 * identical to nb_bits in init_vlc()
868 * @param max_depth is the number of times bits bits must be read to completely
869 * read the longest vlc code
870 * = (max_vlc_length + bits - 1) / bits
872 static av_always_inline
int get_vlc2(GetBitContext
*s
, VLC_TYPE (*table
)[2],
873 int bits
, int max_depth
)
880 GET_VLC(code
, re
, s
, table
, bits
, max_depth
)
889 static inline void print_bin(int bits
, int n
){
892 for(i
=n
-1; i
>=0; i
--){
893 av_log(NULL
, AV_LOG_DEBUG
, "%d", (bits
>>i
)&1);
896 av_log(NULL
, AV_LOG_DEBUG
, " ");
899 static inline int get_bits_trace(GetBitContext
*s
, int n
, char *file
, const char *func
, int line
){
900 int r
= get_bits(s
, n
);
903 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
);
906 static inline int get_vlc_trace(GetBitContext
*s
, VLC_TYPE (*table
)[2], int bits
, int max_depth
, char *file
, const char *func
, int line
){
907 int show
= show_bits(s
, 24);
908 int pos
= get_bits_count(s
);
909 int r
= get_vlc2(s
, table
, bits
, max_depth
);
910 int len
= get_bits_count(s
) - pos
;
911 int bits2
= show
>>(24-len
);
913 print_bin(bits2
, len
);
915 av_log(NULL
, AV_LOG_DEBUG
, "%5d %2d %3d vlc @%5d in %s %s:%d\n", bits2
, len
, r
, pos
, file
, func
, line
);
918 static inline int get_xbits_trace(GetBitContext
*s
, int n
, char *file
, const char *func
, int line
){
919 int show
= show_bits(s
, n
);
920 int r
= get_xbits(s
, n
);
923 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
);
927 #define get_bits(s, n) get_bits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
928 #define get_bits1(s) get_bits_trace(s, 1, __FILE__, __PRETTY_FUNCTION__, __LINE__)
929 #define get_xbits(s, n) get_xbits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
930 #define get_vlc(s, vlc) get_vlc_trace(s, (vlc)->table, (vlc)->bits, 3, __FILE__, __PRETTY_FUNCTION__, __LINE__)
931 #define get_vlc2(s, tab, bits, max) get_vlc_trace(s, tab, bits, max, __FILE__, __PRETTY_FUNCTION__, __LINE__)
933 #define tprintf(p, ...) av_log(p, AV_LOG_DEBUG, __VA_ARGS__)
936 #define tprintf(p, ...) {}
939 static inline int decode012(GetBitContext
*gb
){
945 return get_bits1(gb
) + 1;
948 static inline int decode210(GetBitContext
*gb
){
952 return 2 - get_bits1(gb
);
955 #endif /* AVCODEC_BITSTREAM_H */