Skip to content

Commit f6b87e0

Browse files
committed
Fix const style guide
Change-Id: I771726110f8c62872da4bf7b6ac6c6511eba356c
1 parent 8852f89 commit f6b87e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/enc/vp8l_enc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ static int ApplyPredictFilter(VP8LEncoder* const enc, int width, int height,
10891089
int quality, int low_effort,
10901090
int used_subtract_green, VP8LBitWriter* const bw,
10911091
int percent_range, int* const percent,
1092-
int* best_bits) {
1092+
int* const best_bits) {
10931093
const int near_lossless_strength =
10941094
enc->use_palette ? 100 : enc->config->near_lossless;
10951095
const int max_bits = ClampBits(width, height, enc->predictor_transform_bits,
@@ -1121,7 +1121,7 @@ static int ApplyPredictFilter(VP8LEncoder* const enc, int width, int height,
11211121
static int ApplyCrossColorFilter(VP8LEncoder* const enc, int width, int height,
11221122
int quality, int low_effort,
11231123
VP8LBitWriter* const bw, int percent_range,
1124-
int* const percent, int* best_bits) {
1124+
int* const percent, int* const best_bits) {
11251125
const int min_bits = enc->cross_color_transform_bits;
11261126

11271127
if (!VP8LColorSpaceTransform(width, height, min_bits, quality, enc->argb,

0 commit comments

Comments
 (0)