mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-05 16:36:49 +02:00
rename HashChainInit into HashChainReset
this avoids the confusion with "VP8LHashChainInit" Change-Id: Ia1686828c138729e5bda3cc5c8246d99c80915ef
This commit is contained in:
parent
f079e487ae
commit
cb4a18a7ba
@ -184,7 +184,7 @@ int VP8LBackwardRefsCopy(const VP8LBackwardRefs* const src,
|
|||||||
// Hash chains
|
// Hash chains
|
||||||
|
|
||||||
// initialize as empty
|
// initialize as empty
|
||||||
static void HashChainInit(VP8LHashChain* const p) {
|
static void HashChainReset(VP8LHashChain* const p) {
|
||||||
int i;
|
int i;
|
||||||
assert(p != NULL);
|
assert(p != NULL);
|
||||||
for (i = 0; i < p->size_; ++i) {
|
for (i = 0; i < p->size_; ++i) {
|
||||||
@ -202,7 +202,7 @@ int VP8LHashChainInit(VP8LHashChain* const p, int size) {
|
|||||||
p->chain_ = (int*)WebPSafeMalloc(size, sizeof(*p->chain_));
|
p->chain_ = (int*)WebPSafeMalloc(size, sizeof(*p->chain_));
|
||||||
if (p->chain_ == NULL) return 0;
|
if (p->chain_ == NULL) return 0;
|
||||||
p->size_ = size;
|
p->size_ = size;
|
||||||
HashChainInit(p);
|
HashChainReset(p);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -396,7 +396,7 @@ static int BackwardReferencesLz77(int xsize, int ysize,
|
|||||||
if (!cc_init) goto Error;
|
if (!cc_init) goto Error;
|
||||||
}
|
}
|
||||||
ClearBackwardRefs(refs);
|
ClearBackwardRefs(refs);
|
||||||
HashChainInit(hash_chain);
|
HashChainReset(hash_chain);
|
||||||
for (i = 0; i < pix_count - 2; ) {
|
for (i = 0; i < pix_count - 2; ) {
|
||||||
// Alternative#1: Code the pixels starting at 'i' using backward reference.
|
// Alternative#1: Code the pixels starting at 'i' using backward reference.
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
@ -608,7 +608,7 @@ static int BackwardReferencesHashChainDistanceOnly(
|
|||||||
// We loop one pixel at a time, but store all currently best points to
|
// We loop one pixel at a time, but store all currently best points to
|
||||||
// non-processed locations from this point.
|
// non-processed locations from this point.
|
||||||
dist_array[0] = 0;
|
dist_array[0] = 0;
|
||||||
HashChainInit(hash_chain);
|
HashChainReset(hash_chain);
|
||||||
// Add first pixel as literal.
|
// Add first pixel as literal.
|
||||||
AddSingleLiteralWithCostModel(argb + 0, hash_chain, &hashers, cost_model, 0,
|
AddSingleLiteralWithCostModel(argb + 0, hash_chain, &hashers, cost_model, 0,
|
||||||
0, use_color_cache, 0.0, cost, dist_array);
|
0, use_color_cache, 0.0, cost, dist_array);
|
||||||
@ -729,7 +729,7 @@ static int BackwardReferencesHashChainFollowChosenPath(
|
|||||||
}
|
}
|
||||||
|
|
||||||
ClearBackwardRefs(refs);
|
ClearBackwardRefs(refs);
|
||||||
HashChainInit(hash_chain);
|
HashChainReset(hash_chain);
|
||||||
for (ix = 0; ix < chosen_path_size; ++ix, ++size) {
|
for (ix = 0; ix < chosen_path_size; ++ix, ++size) {
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
const int len = chosen_path[ix];
|
const int len = chosen_path[ix];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user