mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-15 21:39:59 +02:00
Remove unused argument in VP8LBitsEntropy.
The function is only used once and does not use the extra argument. Change-Id: I9735383784746cb02b5a643b7a4a2037f2874bf9
This commit is contained in:
@ -257,7 +257,7 @@ static int AnalyzeEntropy(const uint32_t* argb,
|
||||
++histo[kHistoAlphaPred * 256];
|
||||
|
||||
for (j = 0; j < kHistoTotal; ++j) {
|
||||
entropy_comp[j] = VP8LBitsEntropy(&histo[j * 256], 256, NULL);
|
||||
entropy_comp[j] = VP8LBitsEntropy(&histo[j * 256], 256);
|
||||
}
|
||||
entropy[kDirect] = entropy_comp[kHistoAlpha] +
|
||||
entropy_comp[kHistoRed] +
|
||||
|
Reference in New Issue
Block a user