mirror of
https://github.com/google/brotli.git
synced 2024-11-22 19:50:06 +00:00
1428d54178
Add a version of the brotli encoder that compresses each meta-block independently, only using the original input data from previous meta-blocks and nothing from the compressor state. This is a proof-of-concept to show that the current format is flexible enough to support parallel multi-threaded compression.
12 lines
230 B
Makefile
12 lines
230 B
Makefile
#brotli/enc
|
|
|
|
include ../shared.mk
|
|
|
|
OBJS = backward_references.o block_splitter.o brotli_bit_stream.o encode.o encode_parallel.o entropy_encode.o histogram.o literal_cost.o metablock.o
|
|
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS) $(SO)
|
|
|