diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 228ebe5..0000000 --- a/.travis.yml +++ /dev/null @@ -1,65 +0,0 @@ -language: c - -arch: - - amd64 - - arm64 -# only gcc -# - s390x big endian -# - ppc64le (gcc > 8.0 sse->altivec) - -compiler: - - gcc - - clang - -branches: - only: - - master - -script: - - make - - ./icapp ZIPF -# - cat /proc/cpuinfo - -matrix: - include: - - name: linux-arm64-gcc - os: linux - arch: arm64 - compiler: gcc - - - name: windows-mingw-w64 - os: windows - arch: amd64 - script: - - mingw32-make - - ./icapp ZIPF - - - name: apple-macOS-xcode - os: osx - -# - name: linux-ppc64le-gcc-9 -# arch: ppc64le -# env: CC=gcc-9 -# before_install: -# - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test -# - sudo apt-get -y update -# - sudo apt-get -y install gcc-9 - -# - name: linux-arm64-clang -# dist: bionic -# os: linux -# arch: arm64 -# compiler: clang -# env: CC=clang-6 - -# - name: linux-arm64-clang-7 -# dist: bionic -# os: linux -# arch: arm64 -# addons: -# apt: -# update: true -# sources: *apt_sources -# packages: [*apt_packages, 'clang-7'] -# env: CC=clang-7 - diff --git a/plugins.cc b/plugins.cc deleted file mode 100644 index 865447c..0000000 --- a/plugins.cc +++ /dev/null @@ -1,798 +0,0 @@ -/** - Copyright (C) powturbo 2013-2018 - GPL v2 License - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - - - homepage : https://sites.google.com/site/powturbo/ - - github : https://github.com/powturbo - - twitter : https://twitter.com/powturbo - - email : powturbo [_AT_] gmail [_DOT_] com -**/ -// TurboPFor: Integer Compression - Benchmark App -#define _LARGEFILE64_SOURCE 1 -#define _FILE_OFFSET_BITS 64 -#include -#include -#include -#include -#include -#include -#include "conf.h" - -#include "plugins.h" - - #ifdef NCODEC0 -#define CODEC0 0 -#define CODEC0S 0 - #else -#define CODEC0 1 - #ifdef NSIMD -#define CODEC0V 0 - #else -#define CODEC0V 1 - #endif - #endif - - #ifdef CODEC1 -#define CODEC1 1 - #else -#define CODEC1 0 - #endif - - #ifdef CODEC2 -#define CODEC2 1 - #else -#define CODEC2 0 - #endif - - #ifdef LZTURBO -#define C_LZTURBO CODEC2 - #else -#define C_LZTURBO 0 - #endif - - #ifdef BLOSC -#define C_C_BLOSC CODEC2 - #else -#define C_C_BLOSC 0 - #endif - -enum { -#define C_MEMCPY 1 - P_LMCPY, // must be 0 - P_MCPY, // must be 1 - P_COPY, - -#define C_TURBOPFOR CODEC0 - TB_PFDA, - TB_FOR, - TB_FORDA, - TB_BP, - TB_BPN, - TB_BPDA, - TB_PDI, - TB_VBYTE, - TB_BYTE, - TB_BYTE128V, - TB_BYTE256V, - TB_VSIMPLE, - TB_EF, -// TB_FPPFOR64, - TB_FPFFOR64, - TB_FPDFOR64, - TB_PF64, - TB_PF64V, - TB_PFNZZ, - - #ifdef TURBOPFORH -#define C_TURBOPFORH CODEC0V - #else -#define C_TURBOPFORH 0 - #endif - TB_BP128H, - -#define C_TURBOPFOR128 CODEC0V - TB_FOR128V, - TB_PF128V, - TB_PF256V, - TB_PFN128V, - TB_PFN256V, - TB_BP128V, - TB_BPN128V, - TB_EF128V, - - #if defined(__AVX2__) && defined(USE_AVX2) -#define C_TURBOPFOR256 CODEC0V - #else -#define C_TURBOPFOR256 0 - #endif - TB_FOR256V, - TB_BP256H, - TB_BP256V, - TB_BPN256V, - TB_EF256V, - -#define C_BITSHUFFLE CODEC2 - P_BITSHUFFLE, - P_BS_LZ, - P_BS_LZ4, - P_BS_ZLIB, - P_BS_SHUFFLE, - - #ifdef __ARM_NEON -#define C_FASTPFOR 0 - #else -#define C_FASTPFOR CODEC2 - #endif - FP_VBYTE, - FP_SIMPLE8BRLE, - FP_GROUPSIMPLE, - - #ifdef __ARM_NEON -#define C_FASTPFOR128 0 - #else -#define C_FASTPFOR128 CODEC2 - #endif - FP_FASTPFOR, - FP_OPTPFOR, - FP_SIMDPACK, - FP_SIMDFASTPFOR, - FP_SIMDOPTPFOR, - -#define C_LIBFOR CODEC1 - LF_FOR, - LF_FORX, - - #ifdef __ARM_NEON -#define C_LITTLEPACK 0 - #else -#define C_LITTLEPACK CODEC1 - #endif - LI_PACK, - LI_TURBOPACK, - LI_SCPACK, - - #ifdef __ARM_NEON -#define C_LITTLEPACK128 0 - #else -#define C_LITTLEPACK128 CODEC1 - #endif - LI_HORPACK, - - #if defined(__AVX2__) && defined(USE_AVX2) -#define C_LITTLEPACKBMI CODEC1 - #else -#define C_LITTLEPACKBMI 0 - #endif - LI_BMIPACK, - -#define C_LZ4 CODEC1 - LZ4_, - LZ4_BIT, - LZ4_BITX, - LZ4_NIBBLE, - LZ4_NIBBLEX, - LZ4_BYTE,//LZ4_FP8, - - #if defined(__SSSE3__) -#define C_MASKEDVBYTE CODEC1 - #else -#define C_MASKEDVBYTE 0 - #endif - P_MASKEDVBYTE, - -#define C_POLYCOM CODEC2 - PC_OPTPFD, // compression too slow and limited to 28 bits. crashs on some lists - PC_VBYTE, - PC_RICE, // incl. only as demo, crash on some lists - PC_SIMPLE16, // limited to 28 bits. - - #if defined(QMX) -#define C_QMX CODEC1 - #else -#define C_QMX 0 - #endif - P_QMX, - - #if defined(VTENC) -#define C_VTENC CODEC1 - #else -#define C_VTENC 0 - #endif - P_VTENC, - - #ifdef __ARM_NEON -#define C_SIMDCOMP128 0 - #else -#define C_SIMDCOMP128 CODEC2 - #endif - SC_PACK, - SC_FOR, - SC_FORDA, - SC_SIMDPACK128, - - #if defined(__AVX2__) && defined(USE_AVX2) -#define C_SIMDCOMP256 CODEC0V - #else -#define C_SIMDCOMP256 0 - #endif -SC_SIMDPACK256, - -#define C_SIMPLE8B CODEC2 //crash on integers w. size 32 bits ! - AM_SIMPLE8B, -#define C_STREAMVBYTE CODEC1 - P_STREAMVBYTE, - #if defined(__SSSE3__) -#define C_VARINTG8IU CODEC1 - #else -#define C_VARINTG8IU 0 - #endif - P_VARINTG8IU, - - #ifdef ZLIB -#define C_ZLIB CODEC2 - #else -#define C_ZLIB 0 - #endif - P_ZLIB, -#define C_TRANSFORM CODEC0 - TP_BYTES, - TP_BYTE, - TP_NIBBLE, - TB_ZIGZAG32, - TB_DELTA32, - TB_ZDELTA32, - TB_XOR32, -#define C_LZTURBO 0 - P_LZT, - P_VSHUF, - - P_MAX -}; - -#define PAD8(_x_) ( (((_x_)+8-1)/8) ) -#if CODEC1==1 || CODEC2==1 -#include "ext/beplug_.h" // external libs -#endif - - #if C_TURBOPFOR -#define BITUTIL_IN -#define VINT_IN -#define TURBOPFOR_DAC -#define BITPACK_DAC -#include "vint.h" -#include "vsimple.h" -#include "eliasfano.h" -#include "bitutil.h" -#include "transpose.h" -#include "fp.h" -#include "bitpack.h" -#include "vp4.h" - #endif - -#define BLK_SIZE (64*1024*4) -#define BLK_V128 (128*4) -#define BLK_V256 (256*4) - -unsigned char *u32enc(unsigned *__restrict in, int n, unsigned *__restrict out) { unsigned *ip; - for(ip = in; ip != in+(n&~3); ) { - *out++ = *ip++; - *out++ = *ip++; - *out++ = *ip++; - *out++ = *ip++; - } - while(ip < in+n) *out++ = *ip++; - return (unsigned char *)out; -} - -unsigned char *u32dec(unsigned *__restrict in, int n, unsigned *__restrict out) { unsigned *op; - for(op = out; op != out+(n&~3); ) { - *op++ = *in++; - *op++ = *in++; - *op++ = *in++; - *op++ = *in++; - } - while(op < out+n) *op++ = *in++; - return (unsigned char *)in; -} - -unsigned char *_bitunpackx32( unsigned char *__restrict in, unsigned n, unsigned *__restrict out , unsigned b) { unsigned i,k=0; for(i=0; i < n; i++,k+=b ) *out++ = _bitgetx16(in, k, b); return in + PAD8(n*b); } -// direct access functions : included for demonstration only. Use the bulk functions instead, if you are decompressing most of the values -unsigned char *bitf1unpackx32(unsigned char *__restrict in, unsigned n, unsigned *__restrict out, int start, unsigned b) { int i; for(i = 0; i < n; i++) out[i] = bitgetx32(in, i, b)+start+i+1; return in + PAD8(n*b); } -unsigned char *bitfunpackx32( unsigned char *__restrict in, unsigned n, unsigned *__restrict out, int start, unsigned b) { int i; for(i = 0; i < n; i++) out[i] = bitgetx16(in, i, b)+start; return in + PAD8(n*b); } - -//------------------------------------------------- plugins: codes+function ------------------------------------------------- -struct codecs codecs[] = { - { C_TURBOPFOR, "TurboPFor", "https://github.com/powturbo/TurboPFor" }, - // External libs - { C_C_BLOSC, "blosc", "https://github.com/Blosc/c-blosc" }, - { C_FASTPFOR, "FastPFor", "https://github.com/lemire/FastPFor" }, - { C_FASTPFOR128, "FastPFor SSE", "https://github.com/lemire/FastPFor" }, - { C_LZ4, "lz4", "https://github.com/Cyan4973/lz4" }, - { C_LITTLEPACK, "LittleIntPacker", "https://github.com/lemire/LittleIntPacker" }, - { C_LZTURBO, "LzTurbo", "https://sites.google.com/site/powturbo" }, - { C_MASKEDVBYTE, "MaskedVbyte", "http://maskedvbyte.org" }, - { C_POLYCOM, "Polycom", "https://github.com/encode84/bcm" }, - { C_QMX, "QMX", "https://bitbucket.org/andrewtrotman/bench" }, - { C_SIMDCOMP128, "simdcomp", "https://github.com/lemire/simdcomp" }, - { C_SIMPLE8B, "Simple-8b optimized", "https://github.com/powturbo/TurboPFor" }, - { C_STREAMVBYTE, "Streamvbyte", "https://github.com/lemire/streamvbyte" }, - { C_VARINTG8IU, "VarintG8IU", "https://github.com/lemire/FastPFor" }, - { C_ZLIB, "zlib", "http://zlib.net\thttps://github.com/madler/zlib" }, - { C_VTENC, "VTEnc", "VTENC" }, - { C_MEMCPY, "memcpy/copy", "--------------------------------------" }, - { -1 } -}; - -struct plugs plugs[] = { - { TB_PF128V, "TurboPFor", C_TURBOPFOR128, BLK_V128,0,"","PFor (SSE2)" }, - { TB_PFN128V, "TurboPForN", C_TURBOPFOR128, 0, 0,"","PFor (SSE2) large blocks" }, - { TB_PF256V, "TurboPFor256", C_TURBOPFOR256, BLK_V256,0,"","PFor (AVX2)" }, - { TB_PFN256V, "TurboPFor256N", C_TURBOPFOR256, 0, 0,"","PFor (AVX2) large blocks" }, - { TB_PFDA, "TurboPForDA", C_TURBOPFOR, BLK_V128,0,"","PFor direct access" }, - { TB_PDI, "TurboPForDI", C_TURBOPFOR, BLK_V128,0,"","PFord min" }, - { TB_PFNZZ, "TurboPForZZ", C_TURBOPFOR, 0, 0,"","PFor zigzag of delta" }, - - { TB_FOR, "TurboFor", C_TURBOPFOR, BLK_V128,0,"","FOR" }, - { TB_FOR128V, "TurboForV", C_TURBOPFOR128, BLK_V128,0,"","FOR (SIMD)" }, - { TB_FOR256V, "TurboFor256V", C_TURBOPFOR256, BLK_V256,0,"","FOR (AVX2)" }, - { TB_FORDA, "TurboForDA", C_TURBOPFOR, BLK_V128,0,"","FOR direct access" }, - { TB_BPDA, "TurboPackDA", C_TURBOPFOR, BLK_V128,0,"","Bit packing direct access" }, - - { TB_BP, "TurboPack", C_TURBOPFOR, 0, 0,"","Bit packing (scalar)" }, - { TB_BPN, "TurboPackN", C_TURBOPFOR, 0, 0,"","Bit packing (scalar) large blocks" }, - { TB_BP128V, "TurboPackV", C_TURBOPFOR128, BLK_V128,0,"","Bit packing (SSE2 Vertical)" }, - { TB_BP128H, "TurboPackH", C_TURBOPFOR128, BLK_V128,0,"","Bit packing (SSE2 Horizontal)" }, - { TB_BPN128V, "TurboPackVN", C_TURBOPFOR128, 0, 0,"","Bit packing (SSE2 large block)" }, - { TB_BP256V, "TurboPack256V", C_TURBOPFOR256, BLK_V256,0,"","Bit packing (AVX2 Vertical)" }, - { TB_BPN256V, "TurboPack256N", C_TURBOPFOR256, 0, 0,"","Bit packing (AVX2 large block)" }, - - { TB_VBYTE, "TurboVByte", C_TURBOPFOR, 0, 0,"","Variable byte (scalar)" }, - { TB_BYTE, "TurboByte", C_TURBOPFOR, 0, 0,"","SIMD Group Varint" }, - { TB_BYTE128V, "TurboByte128V", C_TURBOPFOR, 0, 0,"","TurboByte+Bitpacking" }, - { TB_BYTE256V, "TurboByte256V", C_TURBOPFOR, 0, 0,"","TurboByte+Bitpacking" }, - { TB_VSIMPLE, "VSimple", C_TURBOPFOR, 0, 0,"","Variable simple (scalar)" }, - { TB_EF, "EliasFano", C_TURBOPFOR, 0, 0,"","Elias fano (scalar)" }, - { TB_EF128V, "EliasFanoV", C_TURBOPFOR128, BLK_V128,0,"","Eliasfano (SSE2)" }, - { TB_EF256V, "EliasFano256V", C_TURBOPFOR256, BLK_V256,0,"","Elias fano (AVX2" }, - - { P_MCPY, "memcpy", C_MEMCPY, 0, 0,"","memcpy" }, - { P_COPY, "copy", C_MEMCPY, 0, 0,"","Integer copy" }, - //----- Transform -------------- - { TP_BYTES, "tpbyte4s", C_TURBOPFOR, BLK_SIZE,0,"","Byte Transpose (scalar)" }, - { TP_BYTE, "tpbyte", C_TURBOPFOR, BLK_SIZE,0,"2,4,8","Byte transpose (simd)" }, - { TP_NIBBLE, "tpnibble", C_TURBOPFOR, BLK_SIZE,0,"2,4,8","Nibble transpose (simd)" }, - { TB_ZIGZAG32, "ZigZag32", C_TURBOPFOR, BLK_SIZE,0,"","ZigZag encoding (sse2)" }, - { TB_DELTA32, "Delta32", C_TURBOPFOR, BLK_SIZE,0,"","Delta encoding (sse2)"}, - { TB_ZDELTA32, "ZDelta32", C_TURBOPFOR, BLK_SIZE,0,"","Zigzag of delta encoding (sse2)"}, - { TB_XOR32, "Xor32", C_TURBOPFOR, BLK_SIZE,0,"","Xor encoding (sse2)" }, - // ---- Floating point -------- -//{ TB_FPPFOR64, "FP_PREV64", C_TURBOPFOR, BLK_SIZE,0,"","Floating point PFOR" }, - { TB_FPFFOR64, "FP_FCM64", C_TURBOPFOR, BLK_SIZE,0,"","Floating point PFOR (FCM)" }, - { TB_FPDFOR64, "FP_DFCM64", C_TURBOPFOR, BLK_SIZE,0,"","Floating point PFOR (DFCM)" }, - { TB_PF64, "TurboPFor64", C_TURBOPFOR, BLK_V128,0,"","PFOR 64" }, - { TB_PF64V, "TurboPFor64V", C_TURBOPFOR, BLK_V128,0,"","PFOR 64" }, - #if CODEC1==1 || CODEC2==1 - #include "ext/beplugr_.h" // external libs - #endif - { -1 } -}; - -struct plugg plugg[] = { - { "TURBOPFOR","TurboPFor library", "TurboPFor256V/TurboPack256V/TurboPFor256N/TurboPFor/TurboPackV/TurboVByte/TurboPack/TurboForDA/EliasFano/VSimple/TurboPForN/TurboPackN/TurboPForDI" }, - { "DEFAULT", "Default", "TurboPFor/TurboPackV/TurboVByte/TurboPack/TurboFor/TurboPForN/TurboPackN/TurboPForDI/TurboPFor256V/TurboPack256V/TurboPFor256N" }, - { "BENCH", "Benchmark", "TurboPFor/TurboPackV/TurboVByte/TurboPack/QMX/FP.SimdFastPfor/FP.SimdOptPFor/MaskedVbyte/StreamVbyte" }, - { "EFFICIENT","Efficient", "TurboPFor/vsimple/turbovbyte" }, - { "TRANSFORM","transpose/shufle,delta,zigzag","tpbyte4s/tpbyte,4/tpnibble,4/ZigZag_32/Delta_32/BitShuffle,4" }, - - { "BITPACK", "Bit Packing", "TurboPack256V/TurboPackV/TurboPackH/TurboPack/SC.SimdPack128/SC.SimdPack256" }, - { "VBYTE", "Variable byte", "TurboVByte/FP.VByte/PC.Vbyte/VarintG8IU/MaskedVbyte/StreamVbyte" }, - { "SIMPLE", "Simple Family", "simple8b/simple16/vsimple/qmx" }, - - { "LZ4", "lz4+bitshufle/transpose 4,8", "lz4_bitshufle/lz4_tp4/lz4_tp8" }, - { "LI", "Little Integer", "LI_Pack/LI_TurboPack/LI_SuperPack/LI_HorPack" }, - { "" } -}; - -#define PAD8(__x) (((__x)+7)/8) -//---------------------------------------------- plugins -------------------------------------------------------- -#include "conf.h" -unsigned char sbuf[BLK_SIZE*2+1024]; - -int codini(size_t insize, int codec) { - switch(codec) { - #if CODEC1==1 || CODEC2==1 - #include "ext/beplugi_.c" - #endif - } - return 0; -} - -void codexit(int codec) {} - -//--- Sorted integer array : Delta/Differential compression (mdelta=0 increasing, mdelta=1 strictly increasing sequence) --------------- -unsigned char *codcomps(unsigned char *_in, unsigned _n, unsigned char *out, int outsize, int codec, int lev, char *prm, int mdelta) { - unsigned *in = (unsigned *)_in, n = (_n+3) / 4, i, *pa=(unsigned *)sbuf, x, b; - - switch(codec) { - case TB_VSIMPLE: x = *in++; bitdienc32( in, --n, pa, x, mdelta); - vbxput32(out, x); return vsenc32( pa, n, out); - case TB_VBYTE: x = *in++; --n; vbxput32(out, x); return mdelta?vbd1enc32( in, n, out, x ):vbdenc32( in, n, out, x); - case TB_BYTE: x = *in++; --n; vbxput32(out, x); return mdelta?v8d1enc32( in, n, out, x ):v8denc32( in, n, out, x); - case TB_EF: x = *in++; --n; vbxput32(out, x); return mdelta?efano1enc32( in, n, out, x+1 ):efanoenc32( in, n, out, x); - - case TB_PFDA: x = *in++; --n; vbxput32(out, x); DELTR(in,n,x,mdelta,pa); - return p4encx32(pa,n,out); - case TB_FOR : - case TB_FORDA: x = *in++; --n; vbxput32(out, x); - if(mdelta) { b = bsr32(bitf132(in, n, 0,x)); *out++=b; return bitf1pack32(in, n, out, x, b); } - else { b = bsr32(bitf32( in, n, 0,x)); *out++=b; return bitfpack32( in, n, out, x, b); } - - #if C_TURBOPFORH - case TB_BP128H: - #endif - case TB_BP: x = *in++; --n; vbxput32(out, x); - if(mdelta) { b = bsr32(bitd132(in, n, 0,x)); *out++=b; return bitd1pack32(in, n, out, x, b); } - else { b = bsr32(bitd32( in, n, 0, x)); *out++=b; return bitdpack32( in, n, out, x, b); } - case TB_BPN: return out+(mdelta?bitnd1pack32(in, n, out):bitndpack32( in, n, out)); - - case TB_PDI: x = *in++; --n; vbxput32(out, x); return p4senc32(in, n, out, x ); - - #if C_TURBOPFOR128 - case TB_EF128V: x = *in++; --n; vbxput32(out, x); - if(mdelta) return n == 128?efano1enc128v32(in, n, out, x+1 ):efano1enc32( in, n, out, x+1); - else return n == 128?efanoenc128v32( in, n, out, x ):efanoenc32( in, n, out, x ); - case TB_PF128V: x = *in++; --n; vbxput32(out, x); - if(mdelta) return n == 128?p4d1enc128v32( in, n, out, x ):p4d1enc32( in, n, out, x); - else return n == 128?p4denc128v32( in, n, out, x ):p4denc32( in, n, out, x); - case TB_PFN128V: return out+(mdelta?p4nd1enc128v32( in, n, out ):p4ndenc128v32(in, n, out)); - - case TB_FOR128V: x = *in++; --n; vbxput32(out, x); - if(mdelta) { b = bsr32(bitf132(in, n, 0,x)); *out++=b; return n == 128?bitf1pack128v32(in, n, out, x, b):bitf1pack32( in, n, out, x, b); } - else { b = bsr32(bitf32( in, n, 0,x)); *out++=b; return n == 128?bitfpack128v32( in, n, out, x, b):bitfpack32( in, n, out, x, b); } - case TB_BP128V: x = *in++; --n; vbxput32(out, x); - if(mdelta) { b = bsr32(bitd132(in, n, 0,x));*out++=b; return n == 128?bitd1pack128v32(in, n, out, x, b):bitd1pack32( in, n, out, x, b); } - else { b = bsr32(bitd32( in, n, 0,x)); *out++=b; return n == 128?bitdpack128v32( in, n, out, x, b):bitdpack32( in, n, out, x, b); } - case TB_BPN128V: return out+(mdelta?bitnd1pack128v32( in, n, out ):bitndpack128v32(in, n, out)); - case TB_BYTE128V: return out+(mdelta?v8nd1enc128v32( in, n, out ):v8ndenc128v32( in, n, out)); - #endif - - #if C_TURBOPFOR256 - case TB_FOR256V: x = *in++; --n; vbxput32(out, x); - if(mdelta) { b = bsr32(bitf132(in, n, 0,x)); *out++=b; return n == 256?bitf1pack256v32(in, n, out, x, b):bitf1pack32( in, n, out, x, b); } - else { b = bsr32(bitf32( in, n, 0,x)); *out++=b; return n == 256?bitfpack256v32( in, n, out, x, b):bitfpack32( in, n, out, x, b); } - case TB_EF256V: x = *in++; --n; vbxput32(out, x); - if(mdelta) return n == 256?efano1enc256v32(in, n, out, x+1 ):efano1enc32( in, n, out, x+1); - else return n == 256?efanoenc256v32( in, n, out, x ):efanoenc32( in, n, out, x ); - case TB_PF256V: x = *in++; bitdienc32( in, --n, pa, x, mdelta); - vbxput32(out, x); return n == 256?p4enc256v32( pa, n, out ):p4enc32( pa, n, out); - case TB_PFN256V: return out+(mdelta?p4nd1enc256v32( in, n, out ):p4ndenc256v32(in, n, out)); - case TB_BP256V: x = *in++; --n; vbxput32(out, x); - if(mdelta) { b = bsr32(bitd132(in, n, 0,x)); *out++=b; return n == 256?bitd1pack256v32(in, n, out, x, b):bitd1pack32( in, n, out, x, b); } - else { b = bsr32(bitd32( in, n, 0,x)); *out++=b; return n == 256?bitdpack256v32( in, n, out, x, b):bitdpack32( in, n, out, x, b); } - case TB_BPN256V: return out+(mdelta?bitnd1pack256v32( in, n, out ):bitndpack256v32(in, n, out)); - case TB_BYTE256V: return out+(mdelta?v8nd1enc256v32( in, n, out ):v8ndenc256v32( in, n, out)); - #endif - // --------- transform ------------------------------------------------------------------------------------------------ - #if C_TRANSFORM - case TB_ZIGZAG32: bitzenc32( in, n, (unsigned *)out, 0, 0); return out + _n; - case TP_BYTES: bitdienc32(in, n, (unsigned *)sbuf, -mdelta, mdelta); tpenc4((unsigned char *)sbuf, _n, out); return out + _n; - case TP_BYTE: bitdienc32(in, n, (unsigned *)sbuf, -mdelta, mdelta); tpenc( (unsigned char *)sbuf, _n, out, lev); return out + _n; - case TP_NIBBLE: bitdienc32(in, n, (unsigned *)sbuf, -mdelta, mdelta); tp4enc((unsigned char *)sbuf, _n, out, lev); return out + _n; - case TB_DELTA32: bitdienc32(in, n, (unsigned *)out, -mdelta, mdelta); return out + _n; - case TB_ZDELTA32: bitzzenc32(in, n, (unsigned *)out, -mdelta, mdelta); return out + _n; - case TB_XOR32: bitxenc32( in, n, (unsigned *)out, -mdelta); return out + _n; - #endif - #if CODEC1==1 || CODEC2==1 - #include "ext/beplugcs_.c" - #endif - } - return out; -} - -unsigned char *coddecomps(unsigned char *in, unsigned _n, unsigned char *_out, int outlen, int codec, int lev, char *prm, int mdelta) { - unsigned *out = (unsigned *)_out, n = (outlen+3) / 4,x,b; - - switch(codec) { - case TB_VSIMPLE:vbxget32(in, x);*out++ = x; --n; in = vsdec32( in, n, out); bitdidec32(out, n, x+mdelta, mdelta); return in; - case TB_EF: vbxget32(in, x);*out++ = x; --n; return mdelta?efano1dec32( in, n, out, x+1 ):efanodec32( in, n, out, x); - case TB_VBYTE: vbxget32(in, x);*out++ = x; --n; return mdelta?vbd1dec32( in, n, out, x ):vbddec32( in, n, out, x); - case TB_BYTE: vbxget32(in, x);*out++ = x; --n; return mdelta?v8d1dec32( in, n, out, x ):v8ddec32( in, n, out, x); - - case TB_PFDA: vbxget32(in, x);*out++ = x; --n; return mdelta?p4f1decx32( in, n, out, x ):p4fdecx32( in, n, out, x); - - case TB_FOR: vbxget32(in, x);*out++ = x; --n; b = *in++; return mdelta?bitf1unpack32( in, n, out, x, b):bitfunpack32( in, n, out, x, b); - case TB_FORDA: vbxget32(in, x);*out++ = x; --n; b = *in++; return mdelta?bitf1unpackx32( in, n, out, x, b):bitfunpackx32( in, n, out, x, b); - case TB_BP: vbxget32(in, x);*out++ = x; --n; b = *in++; return mdelta?bitd1unpack32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); - case TB_BPN: return in+(mdelta?bitnd1unpack32(in, n, out ):bitndunpack32( in, n, out)); - - case TB_PDI: vbxget32(in, x);*out++ = x; --n; return p4sdec32(in, n, out, x); - - #if C_TURBOPFOR128 - case TB_FOR128V:vbxget32(in, x);*out++ = x; --n; b = *in++; - if(mdelta) { return n==128?bitf1unpack128v32( in, n, out, x, b):bitf1unpack32( in, n, out, x, b); } - else { return n==128?bitfunpack128v32( in, n, out, x, b):bitfunpack32(in, n, out, x, b); } - case TB_EF128V: vbxget32(in, x);*out++ = x; --n; - if(mdelta) { return n==128?efano1dec128v32(in, n, out, x+1 ):efano1dec32( in, n, out, x+1); } - else { return n==128?efanodec128v32( in, n, out, x ):efanodec32( in, n, out, x); } - case TB_PF128V: vbxget32(in, x);*out++ = x; --n; //__builtin_prefetch(in+256); - if(mdelta) { return n==128?p4d1dec128v32( in, n, out, x ):p4d1dec32( in, n, out, x); } - else { return n==128?p4ddec128v32( in, n, out, x ):p4ddec32( in, n, out, x); } - case TB_PFN128V: return in+(mdelta?p4nd1dec128v32(in, n, out ):p4nddec128v32( in, n, out)); - case TB_BP128V: vbxget32(in, x);*out++ = x; --n; b = *in++; - if(mdelta) { return n==128?bitd1unpack128v32(in, n, out, x, b):bitd1unpack32( in, n, out, x, b); } - else { return n==128?bitdunpack128v32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); } - case TB_BPN128V: return in+(mdelta?bitnd1unpack128v32(in, n, out ):bitndunpack128v32(in, n, out)); - case TB_BYTE128V: return in+(mdelta?v8nd1dec128v32(in, n, out ):v8nd1dec128v32(in, n, out)); - #endif - - #if C_TURBOPFORH - case TB_BP128H: vbxget32(in, x);*out++ = x; --n; b = *in++; - if(mdelta) { return n==128?bitd1unpack128h32(in, n, out, x, b):bitd1unpack32( in, n, out, x, b); } - else { return n==128?bitdunpack128h32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); } - #endif - - #if C_TURBOPFOR256 - case TB_EF256V: vbxget32(in, x);*out++ = x; --n; - if(mdelta) { return n==256?efano1dec256v32(in, n, out, x+1 ):efano1dec32( in, n, out, x+1); } - else { return n==256?efanodec256v32( in, n, out, x ):efanodec32( in, n, out, x); } - case TB_PF256V: vbxget32(in, x);*out++ = x; --n; //__builtin_prefetch(in+256); - if(mdelta) { return n==256?p4d1dec256v32( in, n, out, x ):p4d1dec32( in, n, out, x); } - else { return n==256?p4ddec256v32( in, n, out, x ):p4ddec32( in, n, out, x); } - case TB_PFN256V: return in+(mdelta?p4nd1dec256v32(in, n, out ):p4nddec256v32( in, n, out)); - case TB_FOR256V:vbxget32(in, x);*out++ = x; --n; b = *in++; - if(mdelta) { return n==256?bitf1unpack256v32( in, n, out, x, b):bitf1unpack32( in, n, out, x, b); } - else { return n==256?bitfunpack256v32( in, n, out, x, b):bitfunpack32(in, n, out, x, b); } - case TB_BP256V: vbxget32(in, x);*out++ = x; --n; b = *in++; - if(mdelta) { return n==256?bitd1unpack256v32(in, n, out, x, b):bitd1unpack32( in, n, out, x, b); } - else { return n==256?bitdunpack256v32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); } - case TB_BPN256V: return in+(mdelta?bitnd1unpack256v32(in, n, out ):bitndunpack256v32(in, n, out)); - case TB_BYTE256V: return in+(mdelta?v8nd1dec256v32(in, n, out ):v8nddec256v32(in, n, out)); - #endif - - //---------- transpose + lz77 ---------------------- - #if C_TRANSFORM - case TB_ZIGZAG32: memcpy(out, in, outlen); bitzdec32(out, n, 0); return in + outlen; - case TP_BYTES: tpdec4((unsigned char *)in, outlen, (unsigned char *)out); bitdidec32(out, n, -mdelta, mdelta); return in + outlen; - case TP_BYTE: tpdec( (unsigned char *)in, outlen, (unsigned char *)out,lev); bitdidec32(out, n, -mdelta, mdelta); return in + outlen; - case TP_NIBBLE: tp4dec((unsigned char *)in, outlen, (unsigned char *)out,lev); bitdidec32(out, n, -mdelta, mdelta); return in + outlen; - case TB_DELTA32: memcpy(out, in, outlen); mdelta?bitd1dec32(out, n, -mdelta):bitddec32(out, n, 0); return in + outlen; - case TB_ZDELTA32: memcpy(out, in, outlen); bitzzdec32(out, n, -mdelta); return in + outlen; - case TB_XOR32: memcpy(out, in, outlen); bitxdec32(out, n, -mdelta); return in + outlen; - #endif - #if CODEC1==1 || CODEC2==1 - #include "ext/beplugds_.c" - #endif - } - return in; -} - -//---- ZigZag---- -unsigned char *codcompz(unsigned char *_in, unsigned _n, unsigned char *out, int outsize, int codec, int lev, char *prm, int mdelta) { - unsigned *in = (unsigned *)_in, n = (_n+3) / 4, i, *pa = (unsigned *)sbuf, x, b; - - switch(codec) { - case TB_VBYTE: x = *in++; --n; vbxput32(out, x); return vbzenc32( in, n, out, x); - case TB_BYTE: x = *in++; --n; vbxput32(out, x); return v8zenc32( in, n, out, x); - case TB_BP: x = *in++; --n; vbxput32(out, x);b = bsr32(bitz32(in, n, 0,x)); *out++=b;return bitzpack32(in, n, out, x, b); - case TB_BPN: return out+bitnzpack32(in, n, out); - #if C_TURBOPFOR128 - case TB_PF128V: x = *in++; --n; vbxput32(out, x); return n == 128?p4zenc128v32(in, n, out, x):p4zenc32(in, n, out, x); - case TB_PFN128V: return out+p4nzenc128v32( in, n, out ); - case TB_BP128V: x = *in++; --n; vbxput32(out, x);b = bsr32(bitz32(in, n, 0,x)); *out++=b;return n == 128?bitzpack128v32(in, n, out, x, b):bitzpack32(in, n, out, x, b); - case TB_BPN128V: return out+bitnzpack128v32( in, n, out ); - #endif - - #if C_TURBOPFOR256 - case TB_PF256V: x = *in++; --n; vbxput32(out, x); return n == 256?p4zenc256v32(in, n, out, x):p4zenc32(in, n, out, x); - case TB_PFN256V: return out+p4nzenc256v32( in, n, out ); - case TB_BP256V: x = *in++; --n; vbxput32(out, x);b = bsr32(bitz32(in, n, 0, x)); *out++=b;return n == 256?bitzpack256v32(in, n, out, x, b):bitzpack32(in, n, out,x, b); - case TB_BPN256V: return out+bitnzpack256v32( in, n, out ); - #endif - } - return out; -} - -unsigned char *coddecompz(unsigned char *in, unsigned _n, unsigned char *_out, int outlen, int codec, int lev, char *prm, int mdelta) { - unsigned *out = (unsigned *)_out, n = (outlen+3) / 4,x,b; - - switch(codec) { - case TB_VBYTE: vbxget32(in, x); *out++ = x; --n; return vbzdec32(in, n, out, x); - case TB_BP: vbxget32(in, x); *out++ = x; --n; b = *in++; return bitzunpack32(in, n, out, x, b); - case TB_BPN: return in+bitnzunpack32(in, n, out); - case TB_BYTE: vbxget32(in, x); *out++ = x; --n; return v8zdec32(in, n, out, x); - - #if C_TURBOPFOR128 - case TB_PF128V:vbxget32(in, x); *out++ = x; --n; return n == 128?p4zdec128v32(in, n, out, x):p4zdec32(in, n, out, x); - case TB_PFN128V: return in+p4nzdec128v32(in, n, out); - case TB_BP128V:vbxget32(in, x); *out++ = x; --n; b = *in++; return n == 128?bitzunpack128v32(in, n, out, x, b):bitzunpack32(in, n, out, x, b); - case TB_BPN128V: return in+bitnzunpack128v32(in, n, out); - case TB_BYTE128V: return in+v8nzdec128v32(in, n, out); - #endif - - #if C_TURBOPFOR256 - case TB_PF256V:vbxget32(in, x); *out++ = x; --n; return n == 256?p4zdec256v32(in, n, out, x):p4zdec32(in, n, out, x); - case TB_PFN256V: return in+p4nzdec256v32(in, n, out); - case TB_BP256V:vbxget32(in, x); *out++ = x; --n; b = *in++; return n == 256?bitzunpack256v32(in, n, out, x, b):bitzunpack32(in, n, out, x, b); - case TB_BPN256V: return in+bitnzunpack256v32(in, n, out); - case TB_BYTE256V: return in+v8nzdec256v32(in, n, out); - #endif - } - return in; -} - -unsigned char *codcomp(unsigned char *_in, unsigned _n, unsigned char *out, int outsize, int codec, int lev, char *prm, int b) { - unsigned *in = (unsigned *)_in, n = (_n+3) / 4, x; - - switch(codec) { - case TB_EF: return out; // Not applicable - case TB_VBYTE: return vbenc32( in, n, out); - case TB_BYTE: return v8enc32( in, n, out); - case TB_VSIMPLE: return vsenc32( in, n, out); - - case TB_PFDA: return p4encx32( in, n, out); //case TB_PFM: bsr32(bitfm32( in, n, 0,&x)); vbxput32(out, x); return p4denc32(in, n, out, x); - case TB_PDI: { unsigned *pa = (unsigned *)sbuf,mdelta; - bitfm32(in, n, 0, &x); // determine minimum value - mdelta = bitdi32(in, n, 0, x); if(mdelta>(1<<27)) mdelta=1<<27;// determine minimum delta - bitdienc32(in, n, pa, x, mdelta); // delta transform - mdelta=mdelta<<5|(x&31); x>>=5; vbxput32(out, x); vbput32(out, mdelta); - return p4enc32(pa, n, out); - } - case TB_FOR : - case TB_FORDA: b = bsr32(bitfm32( in, n, 0, &x)); vbxput32(out, x); *out++=b; return bitfpack32( in, n, out, x, b); - - #if C_TURBOPFORH - case TB_BP128H: - #endif - case TB_BPDA: - case TB_BP: if(b < 0) { b = bsr32(bit32(in, n, 0)); *out++ = b; } - return bitpack32(in, n, out, b); - case TB_BPN: return out+bitnpack32(in, n, out); - - #if C_TURBOPFOR128 - case TB_EF128V: return out; - - case TB_PF128V: return n == 128?p4enc128v32(in, n, out):p4enc32(in, n, out); - case TB_PFN128V: return out+p4nenc128v32(in, n, out); - case TB_PFNZZ: return out+p4nzzenc128v32( in, n, out, 0); - - case TB_FOR128V: b = bsr32(bitfm32( in, n, 0, &x)); vbxput32(out, x); *out++=b; return bitfpack128v32( in, n, out, x, b); - - case TB_BP128V: if(b < 0) { b = bsr32(bit32(in, n, 0)); *out++ = b; } - return n == 128?bitpack128v32(in, n, out, b):bitpack32(in, n, out, b); - case TB_BPN128V: return out+bitnpack128v32(in, n, out); - case TB_BYTE128V: return out+v8nenc128v32(in, n, out); - #endif - - #if C_TURBOPFOR256 - case TB_PF256V: return n == 256?p4enc256v32(in, n, out):p4enc32(in, n, out); - case TB_PFN256V: return out+p4nenc256v32(in, n, out); - - case TB_FOR256V: b = bsr32(bitfm32( in, n, 0, &x)); vbxput32(out, x); *out++=b; return bitfpack256v32( in, n, out, x, b); - - case TB_BP256V: if(b < 0) { b = bsr32(bit32(in, n, 0)); *out++ = b; } - return n == 256?bitpack256v32(in, n, out, b):bitpack32(in, n, out, b); - case TB_BPN256V: return out+bitnpack256v32(in, n, out); - case TB_BYTE256V: return out+v8nenc256v32(in, n, out); - #endif - - case P_COPY: return u32enc( in, n, (unsigned *)out); - case P_MCPY: memcpy(out, _in, _n); return out+_n; - // --------- transform ---------------------------------------- - #if C_TRANSFORM - case TP_BYTES: tpenc4((unsigned char *)in, _n, out); return out + _n; - case TP_BYTE: tpenc( (unsigned char *)in, _n, out,lev); return out + _n; - case TP_NIBBLE: tp4enc((unsigned char *)in, _n, out,lev); return out + _n; - case TB_DELTA32: bitdienc32( in,n, (unsigned *)out,0,0); return out + _n; - case TB_ZDELTA32: bitzzenc32( in,n, (unsigned *)out,0,0); return out + _n; - case TB_ZIGZAG32: bitzenc32( in, n,(unsigned *)out,0,0); return out + _n; - #endif - //---- Floating point ---------------------- - //case TB_FPPFOR64: ctou64(out) = ctou64(_in); return out+fppenc64( (uint64_t *)(_in+8), PAD8(_n)-1, out+8, ctou64(_in)); - case TB_FPFFOR64: ctou64(out) = ctou64(_in); return out+fpfcmenc64( (uint64_t *)(_in+8), PAD8(_n)-1, out+8, ctou64(_in)); - case TB_FPDFOR64: ctou64(out) = ctou64(_in); return out+fpdfcmenc64((uint64_t *)(_in+8), PAD8(_n)-1, out+8, ctou64(_in)); - case TB_PF64: return p4enc64((uint64_t *)in, PAD8(_n), out); - case TB_PF64V: return p4enc128v64((uint64_t *)in, PAD8(_n), out); - #if CODEC1==1 || CODEC2==1 - #include "ext/beplugc_.c" - #endif - } - return out; -} - -unsigned char *coddecomp(unsigned char *in, unsigned _n, unsigned char *_out, int outlen, int codec, int lev, char *prm, int b) { - unsigned *out = (unsigned *)_out, n = (outlen+3) / 4,x; - switch(codec) { - case TB_VBYTE: return vbdec32( in, n, out); // case P_VU: return vudec32( in, n, out); - case TB_BYTE: return v8dec32( in, n, out); - case TB_VSIMPLE: return vsdec32( in, n, out); - case TB_EF: return in; // Not applicable - case TB_PFDA : return p4decx32( in, n, out); //case TB_PFM: vbxget32(in, x); return p4ddec32( in, n, out, x); - case TB_PDI: { uint32_t mdelta; vbxget32(in, x); vbget32(in, mdelta); x = x << 5 | (mdelta & 31); in = p4dec32(in, n, out); bitdidec32(out, n, x, mdelta>>5); break; } - - case TB_FOR: vbxget32(in, x); b = *in++; return bitfunpack32( in, n, out, x, b); - case TB_FORDA: vbxget32(in, x); b = *in++; return bitfunpackx32(in, n, out, x, b); - - case TB_BPDA: if(b < 0) b = *in++; return _bitunpackx32( in, n, out, b); - case TB_BP: if(b < 0) b = *in++; return bitunpack32( in, n, out, b); - case TB_BPN: return in+bitnunpack32( in, n, out); - - #if C_TURBOPFOR128 - case TB_PF128V : return n == 128?p4dec128v32(in, n, out):p4dec32(in, n, out); - case TB_PFN128V : return in+p4ndec128v32(in, n, out); - case TB_PFNZZ: return in+p4nzzdec128v32( in, n, out,0); - - case TB_EF128V: return in; - - case TB_FOR128V: vbxget32(in, x); b = *in++;return bitfunpack128v32( in, n, out, x, b); - - case TB_BP128V: if(b < 0) b = *in++; return n != 128?bitunpack32(in, n, out, b):bitunpack128v32(in, n, out, b); - case TB_BPN128V : return in+bitnunpack128v32(in, n, out); - case TB_BYTE128V : return in+v8ndec128v32(in, n, out); - #endif - - #if C_TURBOPFORH - case TB_BP128H: if(b < 0) b = *in++; return n == 128?bitunpack128h32(in, n, out, b):bitunpack32(in, n, out, b); - #endif - - #if C_TURBOPFOR256 - case TB_FOR256V: vbxget32(in, x); b = *in++;return bitfunpack256v32( in, n, out, x, b); - - case TB_PF256V : __builtin_prefetch(in+256);return n == 256?p4dec256v32(in, n, out):p4dec32(in, n, out); - case TB_PFN256V : return in+p4ndec256v32(in, n, out); - case TB_BP256V: if(b < 0) b = *in++; return n != 256?bitunpack32(in, n, out, b):bitunpack256v32(in, n, out, b); - case TB_BPN256V: return in+bitnunpack256v32(in, n, out); - case TB_BYTE256V: return in+v8ndec256v32(in, n, out); - #endif - - //---------- transform ---------------------- - #if C_TRANSFORM - case TP_BYTES: tpdec4( (unsigned char *)in, outlen, (unsigned char *)out); return in + outlen; - case TP_BYTE: tpdec( (unsigned char *)in, outlen, (unsigned char *)out,lev); return in + outlen; - case TP_NIBBLE: tp4dec( (unsigned char *)in, outlen, (unsigned char *)out,lev); return in + outlen; - case TB_DELTA32: memcpy(out, in, outlen); bitddec32(out, n, 0); return in + outlen; - case TB_ZDELTA32: memcpy(out, in, outlen); bitzzdec32(out, n, 0); return in + outlen; - case TB_ZIGZAG32: memcpy(out, in, outlen); bitzdec32(out, n, 0); return in + outlen; - #endif - //---- Floating point (64 bits)---------------------- - //case TB_FPPFOR64: ctou64(_out) = ctou64(in); return in+fppdec64( in+8, PAD8(outlen)-1, (uint64_t *)(_out+8), ctou64(in)); - case TB_FPFFOR64: ctou64(_out) = ctou64(in); return in+fpfcmdec64( in+8, PAD8(outlen)-1, (uint64_t *)(_out+8), ctou64(in));; - case TB_FPDFOR64: ctou64(_out) = ctou64(in); return in+fpdfcmdec64(in+8, PAD8(outlen)-1, (uint64_t *)(_out+8), ctou64(in)); - case TB_PF64: return p4dec64( in, PAD8(outlen), (uint64_t *)out); - case TB_PF64V: return p4dec128v64(in, PAD8(outlen), (uint64_t *)out); - #if CODEC1==1 || CODEC2==1 - #include "ext/beplugd_.c" - #endif - } - return in; -} - -char *codver(int codec, char *v, char *s) { - switch(codec) { - #if C_C_BLOSC - return BLOSC_VERSION_STRING; - #endif - #if C_LZ4 - case LZ4_: sprintf(s,"%d.%d.%d", LZ4_VERSION_MAJOR, LZ4_VERSION_MINOR, LZ4_VERSION_RELEASE); return s; - #endif - #if C_ZSTD - case P_ZSTD: sprintf(s,"%d.%d.%d", ZSTD_VERSION_MAJOR, ZSTD_VERSION_MINOR, ZSTD_VERSION_RELEASE); return s; - #endif - default: if(v) strcpy(s,v); - } - return s; -} - diff --git a/plugins.h b/plugins.h deleted file mode 100644 index 06b8e25..0000000 --- a/plugins.h +++ /dev/null @@ -1,74 +0,0 @@ -/** - Copyright (C) powturbo 2013-2023 - GPL v2 License - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - - - homepage : https://sites.google.com/site/powturbo/ - - github : https://github.com/powturbo - - twitter : https://twitter.com/powturbo - - email : powturbo [_AT_] gmail [_DOT_] com -**/ -// TurboPFor: plugins.h - settings -#define G_N 0x1 -#define G_D0 0x2 -#define G_D1 0x4 -#define G_Z 0x8 -#define G_D (G_D1|G_D0) - -struct codecs { - int coid; - char *name,*url,*ver; -}; - -struct plugs { - int id; - char *name; - unsigned codec,blksize,flag; - char *lev,*desc; -}; - -struct plugg { - char id[17],*desc,*name; -}; - - #ifdef __cplusplus -extern "C" { - #endif -extern struct plugg plugg[]; -extern struct codecs codecs[]; -extern struct plugs plugs[]; -int codini(size_t insize, int codec); -void codexit(int codec); -int codstart( unsigned char *in, int inlen, int codec); -unsigned char *codcomp( unsigned char *in, unsigned n, unsigned char *out, int outsize, int codec, int lev, char *prm, int b); -unsigned char *coddecomp( unsigned char *in, unsigned n, unsigned char *out, int outlen, int codec, int lev, char *prm, int b); - -unsigned char *codcomps( unsigned char *in, unsigned n, unsigned char *out, int outsize, int codec, int lev, char *prm, int mdelta); -unsigned char *coddecomps(unsigned char *in, unsigned n, unsigned char *out, int outlen, int codec, int lev, char *prm, int mdelta); - -unsigned char *codcompz( unsigned char *in, unsigned n, unsigned char *out, int outsize, int codec, int lev, char *prm, int mdelta); -unsigned char *coddecompz(unsigned char *in, unsigned n, unsigned char *out, int outlen, int codec, int lev, char *prm, int mdelta); - -char *codver(int codec, char *v, char *s); -void *_valloc(size_t size, int a); -void _vfree(void *p, size_t size); - -typedef unsigned char *(*CODCOMP)( unsigned char *_in, unsigned _n, unsigned char *out, int outsize, int codec, int lev, char *prm, int b); -typedef unsigned char *(*CODDECOMP)(unsigned char *in, unsigned _n, unsigned char *_out, int outlen, int codec, int lev, char *prm, int b); - - #ifdef __cplusplus -} - #endif