1. #ifndef _CAVLC_H
  2. #define _CAVLC_H
  3.  
  4.  
  5.  
  6. //CAVLC
  7. //entropy_coding_mode = 0
  8.  
  9.  
  10. enum { EXP_UNSIGNED,EXP_SIGNED,EXP_INTER,EXP_INTRA };
  11.  
  12.  
  13.  
  14. void init_exp_golomb(uint32 len);
  15.  
  16. #include "bitstream.h"
  17. extern uint8 cavlc_code_coeff_4x4(sint32 block[4*4], bitstream *stream);
  18.  
  19. #endif
  20.  
  21.