mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 17:33:50 +01:00
01dfbcc484
Change-Id: I9564b2da251a02197b39cab5f141e7aff1ae8439 Signed-off-by: Roy Oursler <roy.j.oursler@intel.com>
37 lines
856 B
C
37 lines
856 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <memory.h>
|
|
#include <assert.h>
|
|
|
|
#ifdef _MSC_VER
|
|
# include <intrin.h>
|
|
#else
|
|
# include <x86intrin.h>
|
|
#endif
|
|
|
|
#include "encode_df.h"
|
|
#include "bitbuf2.h"
|
|
|
|
struct deflate_icf *encode_deflate_icf_base(struct deflate_icf *next_in,
|
|
struct deflate_icf *end_in, struct BitBuf2 *bb,
|
|
struct hufftables_icf *hufftables)
|
|
{
|
|
struct huff_code lsym, dsym;
|
|
|
|
while (next_in < end_in && !is_full(bb)) {
|
|
lsym = hufftables->lit_len_table[next_in->lit_len];
|
|
dsym = hufftables->dist_table[next_in->lit_dist];
|
|
|
|
// insert ll code, dist_code, and extra_bits
|
|
write_bits_unsafe(bb, lsym.code_and_extra, lsym.length);
|
|
write_bits_unsafe(bb, dsym.code, dsym.length);
|
|
write_bits_unsafe(bb, next_in->dist_extra, dsym.extra_bit_count);
|
|
flush_bits(bb);
|
|
|
|
next_in++;
|
|
}
|
|
|
|
return next_in;
|
|
}
|