Home | History | Annotate | Download | only in Compress
      1 // BcjCoder.h
      2 
      3 #ifndef __COMPRESS_BCJ_CODER_H
      4 #define __COMPRESS_BCJ_CODER_H
      5 
      6 #include "../../../C/Bra.h"
      7 
      8 #include "BranchCoder.h"
      9 
     10 struct CBranch86
     11 {
     12   UInt32 _prevMask;
     13   void x86Init() { x86_Convert_Init(_prevMask); }
     14 };
     15 
     16 MyClassB(BCJ_x86, 0x01, 3, CBranch86 ,
     17     virtual void SubInit() { x86Init(); })
     18 
     19 #endif
     20