Coverage Report

Created: 2026-05-30 06:10

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/libwebp/sharpyuv/sharpyuv_gamma.c
Line
Count
Source
1
// Copyright 2022 Google Inc. All Rights Reserved.
2
//
3
// Use of this source code is governed by a BSD-style license
4
// that can be found in the COPYING file in the root of the source
5
// tree. An additional intellectual property rights grant can be found
6
// in the file PATENTS. All contributing project authors may
7
// be found in the AUTHORS file in the root of the source tree.
8
// -----------------------------------------------------------------------------
9
//
10
// Gamma correction utilities.
11
12
#include "./sharpyuv_gamma.h"
13
14
#include <assert.h>
15
#include <float.h>
16
#include <math.h>
17
18
#include "./sharpyuv.h"
19
#include "webp/types.h"
20
21
// Gamma correction compensates loss of resolution during chroma subsampling.
22
// Size of pre-computed table for converting from gamma to linear.
23
0
#define GAMMA_TO_LINEAR_TAB_BITS 10
24
0
#define GAMMA_TO_LINEAR_TAB_SIZE (1 << GAMMA_TO_LINEAR_TAB_BITS)
25
static uint32_t kGammaToLinearTabS[GAMMA_TO_LINEAR_TAB_SIZE + 2];
26
0
#define LINEAR_TO_GAMMA_TAB_BITS 9
27
0
#define LINEAR_TO_GAMMA_TAB_SIZE (1 << LINEAR_TO_GAMMA_TAB_BITS)
28
static uint32_t kLinearToGammaTabS[LINEAR_TO_GAMMA_TAB_SIZE + 2];
29
30
static const double kGammaF = 1. / 0.45;
31
0
#define GAMMA_TO_LINEAR_BITS 16
32
33
static volatile int kGammaTablesSOk = 0;
34
0
void SharpYuvInitGammaTables(void) {
35
0
  assert(GAMMA_TO_LINEAR_BITS <= 16);
36
0
  if (!kGammaTablesSOk) {
37
0
    int v;
38
0
    const double a = 0.09929682680944;
39
0
    const double thresh = 0.018053968510807;
40
0
    const double final_scale = 1 << GAMMA_TO_LINEAR_BITS;
41
    // Precompute gamma to linear table.
42
0
    {
43
0
      const double norm = 1. / GAMMA_TO_LINEAR_TAB_SIZE;
44
0
      const double a_rec = 1. / (1. + a);
45
0
      for (v = 0; v <= GAMMA_TO_LINEAR_TAB_SIZE; ++v) {
46
0
        const double g = norm * v;
47
0
        double value;
48
0
        if (g <= thresh * 4.5) {
49
0
          value = g / 4.5;
50
0
        } else {
51
0
          value = pow(a_rec * (g + a), kGammaF);
52
0
        }
53
0
        kGammaToLinearTabS[v] = (uint32_t)(value * final_scale + .5);
54
0
      }
55
      // to prevent small rounding errors to cause read-overflow:
56
0
      kGammaToLinearTabS[GAMMA_TO_LINEAR_TAB_SIZE + 1] =
57
0
          kGammaToLinearTabS[GAMMA_TO_LINEAR_TAB_SIZE];
58
0
    }
59
    // Precompute linear to gamma table.
60
0
    {
61
0
      const double scale = 1. / LINEAR_TO_GAMMA_TAB_SIZE;
62
0
      for (v = 0; v <= LINEAR_TO_GAMMA_TAB_SIZE; ++v) {
63
0
        const double g = scale * v;
64
0
        double value;
65
0
        if (g <= thresh) {
66
0
          value = 4.5 * g;
67
0
        } else {
68
0
          value = (1. + a) * pow(g, 1. / kGammaF) - a;
69
0
        }
70
0
        kLinearToGammaTabS[v] = (uint32_t)(final_scale * value + 0.5);
71
0
      }
72
      // to prevent small rounding errors to cause read-overflow:
73
0
      kLinearToGammaTabS[LINEAR_TO_GAMMA_TAB_SIZE + 1] =
74
0
          kLinearToGammaTabS[LINEAR_TO_GAMMA_TAB_SIZE];
75
0
    }
76
0
    kGammaTablesSOk = 1;
77
0
  }
78
0
}
79
80
0
static WEBP_INLINE int Shift(int v, int shift) {
81
0
  return (shift >= 0) ? (v << shift) : (v >> -shift);
82
0
}
83
84
static WEBP_INLINE uint32_t FixedPointInterpolation(int v, uint32_t* tab,
85
                                                    int tab_pos_shift_right,
86
0
                                                    int tab_value_shift) {
87
0
  const uint32_t tab_pos = Shift(v, -tab_pos_shift_right);
88
  // fractional part, in 'tab_pos_shift' fixed-point precision
89
0
  const uint32_t x = v - (tab_pos << tab_pos_shift_right);  // fractional part
90
  // v0 / v1 are in kGammaToLinearBits fixed-point precision (range [0..1])
91
0
  const uint32_t v0 = Shift(tab[tab_pos + 0], tab_value_shift);
92
0
  const uint32_t v1 = Shift(tab[tab_pos + 1], tab_value_shift);
93
  // Final interpolation.
94
0
  const uint32_t v2 = (v1 - v0) * x;  // note: v1 >= v0.
95
0
  const int half =
96
0
      (tab_pos_shift_right > 0) ? 1 << (tab_pos_shift_right - 1) : 0;
97
0
  const uint32_t result = v0 + ((v2 + half) >> tab_pos_shift_right);
98
0
  return result;
99
0
}
100
101
0
static uint32_t ToLinearSrgb(uint16_t v, int bit_depth) {
102
0
  const int shift = GAMMA_TO_LINEAR_TAB_BITS - bit_depth;
103
0
  assert(v <= ((1 << bit_depth) - 1));
104
0
  if (shift > 0) {
105
0
    return kGammaToLinearTabS[v << shift];
106
0
  }
107
0
  return FixedPointInterpolation(v, kGammaToLinearTabS, -shift, 0);
108
0
}
109
110
0
static uint16_t FromLinearSrgb(uint32_t value, int bit_depth) {
111
0
  assert(value <= (1 << GAMMA_TO_LINEAR_BITS));
112
0
  return FixedPointInterpolation(
113
0
      value, kLinearToGammaTabS,
114
0
      (GAMMA_TO_LINEAR_BITS - LINEAR_TO_GAMMA_TAB_BITS),
115
0
      bit_depth - GAMMA_TO_LINEAR_BITS);
116
0
}
117
118
////////////////////////////////////////////////////////////////////////////////
119
120
#define CLAMP(x, low, high) \
121
0
  (((x) < (low)) ? (low) : (((high) < (x)) ? (high) : (x)))
122
0
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
123
0
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
124
125
0
static WEBP_INLINE float Roundf(float x) {
126
0
  if (x < 0) {
127
0
    return (float)ceil((double)(x - 0.5f));
128
0
  } else {
129
0
    return (float)floor((double)(x + 0.5f));
130
0
  }
131
0
}
132
133
0
static WEBP_INLINE float Powf(float base, float exp) {
134
0
  return (float)pow((double)base, (double)exp);
135
0
}
136
137
0
static WEBP_INLINE float Log10f(float x) { return (float)log10((double)x); }
138
139
0
static float ToLinear709(float gamma) {
140
0
  if (gamma < 0.f) {
141
0
    return 0.f;
142
0
  } else if (gamma < 4.5f * 0.018053968510807f) {
143
0
    return gamma / 4.5f;
144
0
  } else if (gamma < 1.f) {
145
0
    return Powf((gamma + 0.09929682680944f) / 1.09929682680944f, 1.f / 0.45f);
146
0
  }
147
0
  return 1.f;
148
0
}
149
150
0
static float FromLinear709(float linear) {
151
0
  if (linear < 0.f) {
152
0
    return 0.f;
153
0
  } else if (linear < 0.018053968510807f) {
154
0
    return linear * 4.5f;
155
0
  } else if (linear < 1.f) {
156
0
    return 1.09929682680944f * Powf(linear, 0.45f) - 0.09929682680944f;
157
0
  }
158
0
  return 1.f;
159
0
}
160
161
0
static float ToLinear470M(float gamma) {
162
0
  return Powf(CLAMP(gamma, 0.f, 1.f), 2.2f);
163
0
}
164
165
0
static float FromLinear470M(float linear) {
166
0
  return Powf(CLAMP(linear, 0.f, 1.f), 1.f / 2.2f);
167
0
}
168
169
0
static float ToLinear470Bg(float gamma) {
170
0
  return Powf(CLAMP(gamma, 0.f, 1.f), 2.8f);
171
0
}
172
173
0
static float FromLinear470Bg(float linear) {
174
0
  return Powf(CLAMP(linear, 0.f, 1.f), 1.f / 2.8f);
175
0
}
176
177
0
static float ToLinearSmpte240(float gamma) {
178
0
  if (gamma < 0.f) {
179
0
    return 0.f;
180
0
  } else if (gamma < 4.f * 0.022821585529445f) {
181
0
    return gamma / 4.f;
182
0
  } else if (gamma < 1.f) {
183
0
    return Powf((gamma + 0.111572195921731f) / 1.111572195921731f, 1.f / 0.45f);
184
0
  }
185
0
  return 1.f;
186
0
}
187
188
0
static float FromLinearSmpte240(float linear) {
189
0
  if (linear < 0.f) {
190
0
    return 0.f;
191
0
  } else if (linear < 0.022821585529445f) {
192
0
    return linear * 4.f;
193
0
  } else if (linear < 1.f) {
194
0
    return 1.111572195921731f * Powf(linear, 0.45f) - 0.111572195921731f;
195
0
  }
196
0
  return 1.f;
197
0
}
198
199
0
static float ToLinearLog100(float gamma) {
200
  // The function is non-bijective so choose the middle of [0, 0.01].
201
0
  const float mid_interval = 0.01f / 2.f;
202
0
  return (gamma <= 0.0f) ? mid_interval
203
0
                         : Powf(10.0f, 2.f * (MIN(gamma, 1.f) - 1.0f));
204
0
}
205
206
0
static float FromLinearLog100(float linear) {
207
0
  return (linear < 0.01f) ? 0.0f : 1.0f + Log10f(MIN(linear, 1.f)) / 2.0f;
208
0
}
209
210
0
static float ToLinearLog100Sqrt10(float gamma) {
211
  // The function is non-bijective so choose the middle of [0, 0.00316227766f[.
212
0
  const float mid_interval = 0.00316227766f / 2.f;
213
0
  return (gamma <= 0.0f) ? mid_interval
214
0
                         : Powf(10.0f, 2.5f * (MIN(gamma, 1.f) - 1.0f));
215
0
}
216
217
0
static float FromLinearLog100Sqrt10(float linear) {
218
0
  return (linear < 0.00316227766f) ? 0.0f
219
0
                                   : 1.0f + Log10f(MIN(linear, 1.f)) / 2.5f;
220
0
}
221
222
0
static float ToLinearIec61966(float gamma) {
223
0
  if (gamma <= -4.5f * 0.018053968510807f) {
224
0
    return Powf((-gamma + 0.09929682680944f) / -1.09929682680944f, 1.f / 0.45f);
225
0
  } else if (gamma < 4.5f * 0.018053968510807f) {
226
0
    return gamma / 4.5f;
227
0
  }
228
0
  return Powf((gamma + 0.09929682680944f) / 1.09929682680944f, 1.f / 0.45f);
229
0
}
230
231
0
static float FromLinearIec61966(float linear) {
232
0
  if (linear <= -0.018053968510807f) {
233
0
    return -1.09929682680944f * Powf(-linear, 0.45f) + 0.09929682680944f;
234
0
  } else if (linear < 0.018053968510807f) {
235
0
    return linear * 4.5f;
236
0
  }
237
0
  return 1.09929682680944f * Powf(linear, 0.45f) - 0.09929682680944f;
238
0
}
239
240
0
static float ToLinearBt1361(float gamma) {
241
0
  if (gamma < -0.25f) {
242
0
    return -0.25f;
243
0
  } else if (gamma < 0.f) {
244
0
    return Powf((gamma - 0.02482420670236f) / -0.27482420670236f, 1.f / 0.45f) /
245
0
           -4.f;
246
0
  } else if (gamma < 4.5f * 0.018053968510807f) {
247
0
    return gamma / 4.5f;
248
0
  } else if (gamma < 1.f) {
249
0
    return Powf((gamma + 0.09929682680944f) / 1.09929682680944f, 1.f / 0.45f);
250
0
  }
251
0
  return 1.f;
252
0
}
253
254
0
static float FromLinearBt1361(float linear) {
255
0
  if (linear < -0.25f) {
256
0
    return -0.25f;
257
0
  } else if (linear < 0.f) {
258
0
    return -0.27482420670236f * Powf(-4.f * linear, 0.45f) + 0.02482420670236f;
259
0
  } else if (linear < 0.018053968510807f) {
260
0
    return linear * 4.5f;
261
0
  } else if (linear < 1.f) {
262
0
    return 1.09929682680944f * Powf(linear, 0.45f) - 0.09929682680944f;
263
0
  }
264
0
  return 1.f;
265
0
}
266
267
0
static float ToLinearPq(float gamma) {
268
0
  if (gamma > 0.f) {
269
0
    const float pow_gamma = Powf(gamma, 32.f / 2523.f);
270
0
    const float num = MAX(pow_gamma - 107.f / 128.f, 0.0f);
271
0
    const float den = MAX(2413.f / 128.f - 2392.f / 128.f * pow_gamma, FLT_MIN);
272
0
    return Powf(num / den, 4096.f / 653.f);
273
0
  }
274
0
  return 0.f;
275
0
}
276
277
0
static float FromLinearPq(float linear) {
278
0
  if (linear > 0.f) {
279
0
    const float pow_linear = Powf(linear, 653.f / 4096.f);
280
0
    const float num = 107.f / 128.f + 2413.f / 128.f * pow_linear;
281
0
    const float den = 1.0f + 2392.f / 128.f * pow_linear;
282
0
    return Powf(num / den, 2523.f / 32.f);
283
0
  }
284
0
  return 0.f;
285
0
}
286
287
0
static float ToLinearSmpte428(float gamma) {
288
0
  return Powf(MAX(gamma, 0.f), 2.6f) / 0.91655527974030934f;
289
0
}
290
291
0
static float FromLinearSmpte428(float linear) {
292
0
  return Powf(0.91655527974030934f * MAX(linear, 0.f), 1.f / 2.6f);
293
0
}
294
295
// Conversion in BT.2100 requires RGB info. Simplify to gamma correction here.
296
0
static float ToLinearHlg(float gamma) {
297
0
  if (gamma < 0.f) {
298
0
    return 0.f;
299
0
  } else if (gamma <= 0.5f) {
300
0
    return Powf((gamma * gamma) * (1.f / 3.f), 1.2f);
301
0
  }
302
0
  return Powf((expf((gamma - 0.55991073f) / 0.17883277f) + 0.28466892f) / 12.0f,
303
0
              1.2f);
304
0
}
305
306
0
static float FromLinearHlg(float linear) {
307
0
  linear = Powf(linear, 1.f / 1.2f);
308
0
  if (linear < 0.f) {
309
0
    return 0.f;
310
0
  } else if (linear <= (1.f / 12.f)) {
311
0
    return sqrtf(3.f * linear);
312
0
  }
313
0
  return 0.17883277f * logf(12.f * linear - 0.28466892f) + 0.55991073f;
314
0
}
315
316
uint32_t SharpYuvGammaToLinear(uint16_t v, int bit_depth,
317
0
                               SharpYuvTransferFunctionType transfer_type) {
318
0
  float v_float, linear;
319
0
  if (transfer_type == kSharpYuvTransferFunctionSrgb) {
320
0
    return ToLinearSrgb(v, bit_depth);
321
0
  }
322
0
  v_float = (float)v / ((1 << bit_depth) - 1);
323
0
  switch (transfer_type) {
324
0
    case kSharpYuvTransferFunctionBt709:
325
0
    case kSharpYuvTransferFunctionBt601:
326
0
    case kSharpYuvTransferFunctionBt2020_10Bit:
327
0
    case kSharpYuvTransferFunctionBt2020_12Bit:
328
0
      linear = ToLinear709(v_float);
329
0
      break;
330
0
    case kSharpYuvTransferFunctionBt470M:
331
0
      linear = ToLinear470M(v_float);
332
0
      break;
333
0
    case kSharpYuvTransferFunctionBt470Bg:
334
0
      linear = ToLinear470Bg(v_float);
335
0
      break;
336
0
    case kSharpYuvTransferFunctionSmpte240:
337
0
      linear = ToLinearSmpte240(v_float);
338
0
      break;
339
0
    case kSharpYuvTransferFunctionLinear:
340
0
      return v;
341
0
    case kSharpYuvTransferFunctionLog100:
342
0
      linear = ToLinearLog100(v_float);
343
0
      break;
344
0
    case kSharpYuvTransferFunctionLog100_Sqrt10:
345
0
      linear = ToLinearLog100Sqrt10(v_float);
346
0
      break;
347
0
    case kSharpYuvTransferFunctionIec61966:
348
0
      linear = ToLinearIec61966(v_float);
349
0
      break;
350
0
    case kSharpYuvTransferFunctionBt1361:
351
0
      linear = ToLinearBt1361(v_float);
352
0
      break;
353
0
    case kSharpYuvTransferFunctionSmpte2084:
354
0
      linear = ToLinearPq(v_float);
355
0
      break;
356
0
    case kSharpYuvTransferFunctionSmpte428:
357
0
      linear = ToLinearSmpte428(v_float);
358
0
      break;
359
0
    case kSharpYuvTransferFunctionHlg:
360
0
      linear = ToLinearHlg(v_float);
361
0
      break;
362
0
    default:
363
0
      assert(0);
364
0
      linear = 0;
365
0
      break;
366
0
  }
367
0
  return (uint32_t)Roundf(linear * ((1 << 16) - 1));
368
0
}
369
370
uint16_t SharpYuvLinearToGamma(uint32_t v, int bit_depth,
371
0
                               SharpYuvTransferFunctionType transfer_type) {
372
0
  float v_float, linear;
373
0
  if (transfer_type == kSharpYuvTransferFunctionSrgb) {
374
0
    return FromLinearSrgb(v, bit_depth);
375
0
  }
376
0
  v_float = (float)v / ((1 << 16) - 1);
377
0
  switch (transfer_type) {
378
0
    case kSharpYuvTransferFunctionBt709:
379
0
    case kSharpYuvTransferFunctionBt601:
380
0
    case kSharpYuvTransferFunctionBt2020_10Bit:
381
0
    case kSharpYuvTransferFunctionBt2020_12Bit:
382
0
      linear = FromLinear709(v_float);
383
0
      break;
384
0
    case kSharpYuvTransferFunctionBt470M:
385
0
      linear = FromLinear470M(v_float);
386
0
      break;
387
0
    case kSharpYuvTransferFunctionBt470Bg:
388
0
      linear = FromLinear470Bg(v_float);
389
0
      break;
390
0
    case kSharpYuvTransferFunctionSmpte240:
391
0
      linear = FromLinearSmpte240(v_float);
392
0
      break;
393
0
    case kSharpYuvTransferFunctionLinear:
394
0
      return v;
395
0
    case kSharpYuvTransferFunctionLog100:
396
0
      linear = FromLinearLog100(v_float);
397
0
      break;
398
0
    case kSharpYuvTransferFunctionLog100_Sqrt10:
399
0
      linear = FromLinearLog100Sqrt10(v_float);
400
0
      break;
401
0
    case kSharpYuvTransferFunctionIec61966:
402
0
      linear = FromLinearIec61966(v_float);
403
0
      break;
404
0
    case kSharpYuvTransferFunctionBt1361:
405
0
      linear = FromLinearBt1361(v_float);
406
0
      break;
407
0
    case kSharpYuvTransferFunctionSmpte2084:
408
0
      linear = FromLinearPq(v_float);
409
0
      break;
410
0
    case kSharpYuvTransferFunctionSmpte428:
411
0
      linear = FromLinearSmpte428(v_float);
412
0
      break;
413
0
    case kSharpYuvTransferFunctionHlg:
414
0
      linear = FromLinearHlg(v_float);
415
0
      break;
416
0
    default:
417
0
      assert(0);
418
0
      linear = 0;
419
0
      break;
420
0
  }
421
0
  return (uint16_t)Roundf(linear * ((1 << bit_depth) - 1));
422
0
}