Coverage Report

Created: 2025-08-28 07:16

/src/libavif/ext/libwebp/sharpyuv/sharpyuv_csp.c
Line
Count
Source (jump to first uncovered line)
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
// Colorspace utilities.
11
12
#include "sharpyuv/sharpyuv_csp.h"
13
14
#include <assert.h>
15
#include <math.h>
16
#include <stddef.h>
17
18
20.1k
static int ToFixed16(float f) { return (int)floor(f * (1 << 16) + 0.5f); }
19
20
void SharpYuvComputeConversionMatrix(const SharpYuvColorSpace* yuv_color_space,
21
1.67k
                                     SharpYuvConversionMatrix* matrix) {
22
1.67k
  const float kr = yuv_color_space->kr;
23
1.67k
  const float kb = yuv_color_space->kb;
24
1.67k
  const float kg = 1.0f - kr - kb;
25
1.67k
  const float cb = 0.5f / (1.0f - kb);
26
1.67k
  const float cr = 0.5f / (1.0f - kr);
27
28
1.67k
  const int shift = yuv_color_space->bit_depth - 8;
29
30
1.67k
  const float denom = (float)((1 << yuv_color_space->bit_depth) - 1);
31
1.67k
  float scale_y = 1.0f;
32
1.67k
  float add_y = 0.0f;
33
1.67k
  float scale_u = cb;
34
1.67k
  float scale_v = cr;
35
1.67k
  float add_uv = (float)(128 << shift);
36
1.67k
  assert(yuv_color_space->bit_depth >= 8);
37
38
1.67k
  if (yuv_color_space->range == kSharpYuvRangeLimited) {
39
0
    scale_y *= (219 << shift) / denom;
40
0
    scale_u *= (224 << shift) / denom;
41
0
    scale_v *= (224 << shift) / denom;
42
0
    add_y = (float)(16 << shift);
43
0
  }
44
45
1.67k
  matrix->rgb_to_y[0] = ToFixed16(kr * scale_y);
46
1.67k
  matrix->rgb_to_y[1] = ToFixed16(kg * scale_y);
47
1.67k
  matrix->rgb_to_y[2] = ToFixed16(kb * scale_y);
48
1.67k
  matrix->rgb_to_y[3] = ToFixed16(add_y);
49
50
1.67k
  matrix->rgb_to_u[0] = ToFixed16(-kr * scale_u);
51
1.67k
  matrix->rgb_to_u[1] = ToFixed16(-kg * scale_u);
52
1.67k
  matrix->rgb_to_u[2] = ToFixed16((1 - kb) * scale_u);
53
1.67k
  matrix->rgb_to_u[3] = ToFixed16(add_uv);
54
55
1.67k
  matrix->rgb_to_v[0] = ToFixed16((1 - kr) * scale_v);
56
1.67k
  matrix->rgb_to_v[1] = ToFixed16(-kg * scale_v);
57
1.67k
  matrix->rgb_to_v[2] = ToFixed16(-kb * scale_v);
58
1.67k
  matrix->rgb_to_v[3] = ToFixed16(add_uv);
59
1.67k
}
60
61
// Matrices are in YUV_FIX fixed point precision.
62
// WebP's matrix, similar but not identical to kRec601LimitedMatrix
63
// Derived using the following formulas:
64
// Y = 0.2569 * R + 0.5044 * G + 0.0979 * B + 16
65
// U = -0.1483 * R - 0.2911 * G + 0.4394 * B + 128
66
// V = 0.4394 * R - 0.3679 * G - 0.0715 * B + 128
67
static const SharpYuvConversionMatrix kWebpMatrix = {
68
  {16839, 33059, 6420, 16 << 16},
69
  {-9719, -19081, 28800, 128 << 16},
70
  {28800, -24116, -4684, 128 << 16},
71
};
72
// Kr=0.2990f Kb=0.1140f bit_depth=8 range=kSharpYuvRangeLimited
73
static const SharpYuvConversionMatrix kRec601LimitedMatrix = {
74
  {16829, 33039, 6416, 16 << 16},
75
  {-9714, -19071, 28784, 128 << 16},
76
  {28784, -24103, -4681, 128 << 16},
77
};
78
// Kr=0.2990f Kb=0.1140f bit_depth=8 range=kSharpYuvRangeFull
79
static const SharpYuvConversionMatrix kRec601FullMatrix = {
80
  {19595, 38470, 7471, 0},
81
  {-11058, -21710, 32768, 128 << 16},
82
  {32768, -27439, -5329, 128 << 16},
83
};
84
// Kr=0.2126f Kb=0.0722f bit_depth=8 range=kSharpYuvRangeLimited
85
static const SharpYuvConversionMatrix kRec709LimitedMatrix = {
86
  {11966, 40254, 4064, 16 << 16},
87
  {-6596, -22189, 28784, 128 << 16},
88
  {28784, -26145, -2639, 128 << 16},
89
};
90
// Kr=0.2126f Kb=0.0722f bit_depth=8 range=kSharpYuvRangeFull
91
static const SharpYuvConversionMatrix kRec709FullMatrix = {
92
  {13933, 46871, 4732, 0},
93
  {-7509, -25259, 32768, 128 << 16},
94
  {32768, -29763, -3005, 128 << 16},
95
};
96
97
const SharpYuvConversionMatrix* SharpYuvGetConversionMatrix(
98
0
    SharpYuvMatrixType matrix_type) {
99
0
  switch (matrix_type) {
100
0
    case kSharpYuvMatrixWebp:
101
0
      return &kWebpMatrix;
102
0
    case kSharpYuvMatrixRec601Limited:
103
0
      return &kRec601LimitedMatrix;
104
0
    case kSharpYuvMatrixRec601Full:
105
0
      return &kRec601FullMatrix;
106
0
    case kSharpYuvMatrixRec709Limited:
107
0
      return &kRec709LimitedMatrix;
108
0
    case kSharpYuvMatrixRec709Full:
109
0
      return &kRec709FullMatrix;
110
0
    case kSharpYuvMatrixNum:
111
0
      return NULL;
112
0
  }
113
0
  return NULL;
114
0
}