// Copyright (c) the JPEG XL Project Authors. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file.
enumclass HybridUintMethod {
kNone, // just use kHybridUint420Config.
k000, // force the fastest option.
kFast, // just try a couple of options.
kContextMap, // fast choice for ctx map.
kBest,
};
enumclass LZ77Method {
kNone, // do not try lz77.
kRLE, // only try doing RLE.
kLZ77, // try lz77 with backward references.
kOptimal, // optimal-matching LZ77 parsing.
};
enumclass ANSHistogramStrategy {
kFast, // Only try some methods, early exit.
kApproximate, // Only try some methods.
kPrecise, // Try all methods.
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.