X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=include%2Fvlc_bits.h;h=778493cb3f7f7e46a8ae967b500300b52b77f846;hb=db47358fdcc6c566e5375b813c48f0ae2d1b3391;hp=9d77c473ce8ab1e92216e8a1fa49fab59920133a;hpb=fbf4c8060d35617e39b50ae739307152d02ed951;p=vlc diff --git a/include/vlc_bits.h b/include/vlc_bits.h index 9d77c473ce..778493cb3f 100644 --- a/include/vlc_bits.h +++ b/include/vlc_bits.h @@ -21,12 +21,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#if !defined( __LIBVLC__ ) - #error You are not libvlc or one of its plugins. You cannot include this file -#endif +#ifndef VLC_BITS_H +#define VLC_BITS_H 1 -#ifndef _VLC_BITS_H -#define _VLC_BITS_H 1 +/** + * \file + * This file defines functions, structures for handling streams of bits in vlc + */ typedef struct bs_s { @@ -44,17 +45,20 @@ static inline void bs_init( bs_t *s, void *p_data, int i_data ) s->p_end = s->p + i_data; s->i_left = 8; } + static inline int bs_pos( bs_t *s ) { return( 8 * ( s->p - s->p_start ) + 8 - s->i_left ); } + static inline int bs_eof( bs_t *s ) { return( s->p >= s->p_end ? 1: 0 ); } + static inline uint32_t bs_read( bs_t *s, int i_count ) { - static uint32_t i_mask[33] = + static const uint32_t i_mask[33] = { 0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff, @@ -128,10 +132,12 @@ static inline void bs_skip( bs_t *s, int i_count ) { s->i_left -= i_count; - while( s->i_left <= 0 ) + if( s->i_left <= 0 ) { - s->p++; - s->i_left += 8; + const int i_bytes = ( -s->i_left + 8 ) / 8; + + s->p += i_bytes; + s->i_left += 8 * i_bytes; } } @@ -171,6 +177,7 @@ static inline void bs_align( bs_t *s ) s->p++; } } + static inline void bs_align_0( bs_t *s ) { if( s->i_left != 8 ) @@ -178,6 +185,7 @@ static inline void bs_align_0( bs_t *s ) bs_write( s, s->i_left, 0 ); } } + static inline void bs_align_1( bs_t *s ) { while( s->i_left != 8 )