xref: /aosp_15_r20/external/lzma/CPP/7zip/Compress/BcjRegister.cpp (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1*f6dc9357SAndroid Build Coastguard Worker // BcjRegister.cpp
2*f6dc9357SAndroid Build Coastguard Worker 
3*f6dc9357SAndroid Build Coastguard Worker #include "StdAfx.h"
4*f6dc9357SAndroid Build Coastguard Worker 
5*f6dc9357SAndroid Build Coastguard Worker #include "../Common/RegisterCodec.h"
6*f6dc9357SAndroid Build Coastguard Worker 
7*f6dc9357SAndroid Build Coastguard Worker #include "BcjCoder.h"
8*f6dc9357SAndroid Build Coastguard Worker 
9*f6dc9357SAndroid Build Coastguard Worker namespace NCompress {
10*f6dc9357SAndroid Build Coastguard Worker namespace NBcj {
11*f6dc9357SAndroid Build Coastguard Worker 
12*f6dc9357SAndroid Build Coastguard Worker REGISTER_FILTER_E(BCJ,
13*f6dc9357SAndroid Build Coastguard Worker     CCoder2(z7_BranchConvSt_X86_Dec),
14*f6dc9357SAndroid Build Coastguard Worker     CCoder2(z7_BranchConvSt_X86_Enc),
15*f6dc9357SAndroid Build Coastguard Worker     0x3030103, "BCJ")
16*f6dc9357SAndroid Build Coastguard Worker 
17*f6dc9357SAndroid Build Coastguard Worker }}
18