mirror of
https://github.com/asadbek064/hyparquet-compressors.git
synced 2026-01-11 21:26:38 +00:00
Rename brotli sub-files
This commit is contained in:
parent
9a2f3b72d5
commit
498a53c866
@ -151,7 +151,7 @@ export function buildHuffmanTable(root_table, table, root_bits, code_lengths, co
|
||||
}
|
||||
|
||||
/**
|
||||
* @typedef {import('./brotliBitReader.js').default} BrotliBitReader
|
||||
* @typedef {import('./brotli.bitreader.js').default} BrotliBitReader
|
||||
* @param {number} alphabet_size
|
||||
* @param {HuffmanCode[]} tables
|
||||
* @param {number} table
|
||||
@ -3,12 +3,12 @@
|
||||
* Copyright 2013 Google Inc, Apache License 2.0
|
||||
*/
|
||||
|
||||
import BrotliBitReader from './brotliBitReader.js'
|
||||
import BrotliBitReader from './brotli.bitreader.js'
|
||||
import { lookup, lookupOffsets } from './brotliContext.js'
|
||||
import { HuffmanCode, readHuffmanCode, readSymbol } from './brotliHuffman.js'
|
||||
import { kBlockLengthPrefixCode, kCopyLengthPrefixCode, kCopyRangeLut, kInsertLengthPrefixCode, kInsertRangeLut } from './brotliPrefix.js'
|
||||
import { HuffmanCode, readHuffmanCode, readSymbol } from './brotli.huffman.js'
|
||||
import { kBlockLengthPrefixCode, kCopyLengthPrefixCode, kCopyRangeLut, kInsertLengthPrefixCode, kInsertRangeLut } from './brotli.prefix.js'
|
||||
import { BrotliInput, BrotliOutput } from './brotliStreams.js'
|
||||
import { kNumTransforms, transformDictionaryWord } from './brotliTransform.js'
|
||||
import { kNumTransforms, transformDictionaryWord } from './brotli.transform.js'
|
||||
|
||||
const kNumLiteralCodes = 256
|
||||
const kNumInsertAndCopyCodes = 704
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
Transformations on dictionary words.
|
||||
*/
|
||||
|
||||
import { getDictionary } from './brotliDictionary.js'
|
||||
import { getDictionary } from './brotli.dictionary.js'
|
||||
|
||||
const kIdentity = 0
|
||||
const kOmitLast1 = 1
|
||||
Loading…
Reference in New Issue
Block a user