1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
// Copyright 2019 The libgav1 Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "src/dsp/intra_edge.h"
#include <cassert>
#include <cstdint>
#include <cstring>
#include "src/dsp/dsp.h"
#include "src/utils/common.h"
namespace libgav1 {
namespace dsp {
namespace {
constexpr int kKernelTaps = 5;
constexpr int kKernels[3][kKernelTaps] = {
{0, 4, 8, 4, 0}, {0, 5, 6, 5, 0}, {2, 4, 4, 4, 2}};
constexpr int kMaxUpsampleSize = 16;
template <typename Pixel>
void IntraEdgeFilter_C(void* buffer, int size, int strength) {
assert(strength > 0);
Pixel edge[129];
memcpy(edge, buffer, sizeof(edge[0]) * size);
auto* const dst_buffer = static_cast<Pixel*>(buffer);
const int kernel_index = strength - 1;
for (int i = 1; i < size; ++i) {
int sum = 0;
for (int j = 0; j < kKernelTaps; ++j) {
const int k = Clip3(i + j - 2, 0, size - 1);
sum += kKernels[kernel_index][j] * edge[k];
}
dst_buffer[i] = RightShiftWithRounding(sum, 4);
}
}
template <int bitdepth, typename Pixel>
void IntraEdgeUpsampler_C(void* buffer, int size) {
assert(size % 4 == 0 && size <= kMaxUpsampleSize);
auto* const pixel_buffer = static_cast<Pixel*>(buffer);
Pixel temp[kMaxUpsampleSize + 3];
temp[0] = temp[1] = pixel_buffer[-1];
memcpy(temp + 2, pixel_buffer, sizeof(temp[0]) * size);
temp[size + 2] = pixel_buffer[size - 1];
pixel_buffer[-2] = temp[0];
for (int i = 0; i < size; ++i) {
const int sum =
-temp[i] + (9 * temp[i + 1]) + (9 * temp[i + 2]) - temp[i + 3];
pixel_buffer[2 * i - 1] =
Clip3(RightShiftWithRounding(sum, 4), 0, (1 << bitdepth) - 1);
pixel_buffer[2 * i] = temp[i + 2];
}
}
void Init8bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(8);
assert(dsp != nullptr);
#if LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS
dsp->intra_edge_filter = IntraEdgeFilter_C<uint8_t>;
dsp->intra_edge_upsampler = IntraEdgeUpsampler_C<8, uint8_t>;
#else // !LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS
static_cast<void>(dsp);
#ifndef LIBGAV1_Dsp8bpp_IntraEdgeFilter
dsp->intra_edge_filter = IntraEdgeFilter_C<uint8_t>;
#endif
#ifndef LIBGAV1_Dsp8bpp_IntraEdgeUpsampler
dsp->intra_edge_upsampler = IntraEdgeUpsampler_C<8, uint8_t>;
#endif
#endif // LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS
}
#if LIBGAV1_MAX_BITDEPTH >= 10
void Init10bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(10);
assert(dsp != nullptr);
#if LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS
dsp->intra_edge_filter = IntraEdgeFilter_C<uint16_t>;
dsp->intra_edge_upsampler = IntraEdgeUpsampler_C<10, uint16_t>;
#else // !LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS
static_cast<void>(dsp);
#ifndef LIBGAV1_Dsp10bpp_IntraEdgeFilter
dsp->intra_edge_filter = IntraEdgeFilter_C<uint16_t>;
#endif
#ifndef LIBGAV1_Dsp10bpp_IntraEdgeUpsampler
dsp->intra_edge_upsampler = IntraEdgeUpsampler_C<10, uint16_t>;
#endif
#endif // LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS
}
#endif // LIBGAV1_MAX_BITDEPTH >= 10
#if LIBGAV1_MAX_BITDEPTH == 12
void Init12bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(12);
assert(dsp != nullptr);
#if LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS
dsp->intra_edge_filter = IntraEdgeFilter_C<uint16_t>;
dsp->intra_edge_upsampler = IntraEdgeUpsampler_C<12, uint16_t>;
#else // !LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS
static_cast<void>(dsp);
#ifndef LIBGAV1_Dsp12bpp_IntraEdgeFilter
dsp->intra_edge_filter = IntraEdgeFilter_C<uint16_t>;
#endif
#ifndef LIBGAV1_Dsp12bpp_IntraEdgeUpsampler
dsp->intra_edge_upsampler = IntraEdgeUpsampler_C<12, uint16_t>;
#endif
#endif // LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS
}
#endif // LIBGAV1_MAX_BITDEPTH == 12
} // namespace
void IntraEdgeInit_C() {
Init8bpp();
#if LIBGAV1_MAX_BITDEPTH >= 10
Init10bpp();
#endif
#if LIBGAV1_MAX_BITDEPTH == 12
Init12bpp();
#endif
}
} // namespace dsp
} // namespace libgav1
|