getbits.h
上传用户:poi891205
上传日期:2013-07-15
资源大小:9745k
文件大小:0k
源码类别:

DVD

开发平台:

C/C++

  1. #ifndef __GETBITS_H
  2. #define __GETBITS_H
  3. typedef struct 
  4. {
  5.   // bit-level cache
  6.   unsigned     word;
  7.   int          bit_left;
  8. } getbit_struct;
  9. #define GetBitInit(gb) (gb.bit_left=0)
  10. #endif/*__GETBITS_H*/