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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
|
// 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/average_blend.h"
#include "src/utils/cpu.h"
#if LIBGAV1_TARGETING_SSE4_1
#include <xmmintrin.h>
#include <cassert>
#include <cstddef>
#include <cstdint>
#include "src/dsp/constants.h"
#include "src/dsp/dsp.h"
#include "src/dsp/x86/common_sse4.h"
#include "src/utils/common.h"
namespace libgav1 {
namespace dsp {
namespace low_bitdepth {
namespace {
constexpr int kInterPostRoundBit = 4;
inline void AverageBlend4x4Row(const int16_t* LIBGAV1_RESTRICT prediction_0,
const int16_t* LIBGAV1_RESTRICT prediction_1,
uint8_t* LIBGAV1_RESTRICT dest,
const ptrdiff_t dest_stride) {
const __m128i pred_00 = LoadAligned16(prediction_0);
const __m128i pred_10 = LoadAligned16(prediction_1);
__m128i res_0 = _mm_add_epi16(pred_00, pred_10);
res_0 = RightShiftWithRounding_S16(res_0, kInterPostRoundBit + 1);
const __m128i pred_01 = LoadAligned16(prediction_0 + 8);
const __m128i pred_11 = LoadAligned16(prediction_1 + 8);
__m128i res_1 = _mm_add_epi16(pred_01, pred_11);
res_1 = RightShiftWithRounding_S16(res_1, kInterPostRoundBit + 1);
const __m128i result_pixels = _mm_packus_epi16(res_0, res_1);
Store4(dest, result_pixels);
dest += dest_stride;
const int result_1 = _mm_extract_epi32(result_pixels, 1);
memcpy(dest, &result_1, sizeof(result_1));
dest += dest_stride;
const int result_2 = _mm_extract_epi32(result_pixels, 2);
memcpy(dest, &result_2, sizeof(result_2));
dest += dest_stride;
const int result_3 = _mm_extract_epi32(result_pixels, 3);
memcpy(dest, &result_3, sizeof(result_3));
}
inline void AverageBlend8Row(const int16_t* LIBGAV1_RESTRICT prediction_0,
const int16_t* LIBGAV1_RESTRICT prediction_1,
uint8_t* LIBGAV1_RESTRICT dest,
const ptrdiff_t dest_stride) {
const __m128i pred_00 = LoadAligned16(prediction_0);
const __m128i pred_10 = LoadAligned16(prediction_1);
__m128i res_0 = _mm_add_epi16(pred_00, pred_10);
res_0 = RightShiftWithRounding_S16(res_0, kInterPostRoundBit + 1);
const __m128i pred_01 = LoadAligned16(prediction_0 + 8);
const __m128i pred_11 = LoadAligned16(prediction_1 + 8);
__m128i res_1 = _mm_add_epi16(pred_01, pred_11);
res_1 = RightShiftWithRounding_S16(res_1, kInterPostRoundBit + 1);
const __m128i result_pixels = _mm_packus_epi16(res_0, res_1);
StoreLo8(dest, result_pixels);
StoreHi8(dest + dest_stride, result_pixels);
}
inline void AverageBlendLargeRow(const int16_t* LIBGAV1_RESTRICT prediction_0,
const int16_t* LIBGAV1_RESTRICT prediction_1,
const int width,
uint8_t* LIBGAV1_RESTRICT dest) {
int x = 0;
do {
const __m128i pred_00 = LoadAligned16(&prediction_0[x]);
const __m128i pred_01 = LoadAligned16(&prediction_1[x]);
__m128i res0 = _mm_add_epi16(pred_00, pred_01);
res0 = RightShiftWithRounding_S16(res0, kInterPostRoundBit + 1);
const __m128i pred_10 = LoadAligned16(&prediction_0[x + 8]);
const __m128i pred_11 = LoadAligned16(&prediction_1[x + 8]);
__m128i res1 = _mm_add_epi16(pred_10, pred_11);
res1 = RightShiftWithRounding_S16(res1, kInterPostRoundBit + 1);
StoreUnaligned16(dest + x, _mm_packus_epi16(res0, res1));
x += 16;
} while (x < width);
}
void AverageBlend_SSE4_1(const void* LIBGAV1_RESTRICT prediction_0,
const void* LIBGAV1_RESTRICT prediction_1,
const int width, const int height,
void* LIBGAV1_RESTRICT const dest,
const ptrdiff_t dest_stride) {
auto* dst = static_cast<uint8_t*>(dest);
const auto* pred_0 = static_cast<const int16_t*>(prediction_0);
const auto* pred_1 = static_cast<const int16_t*>(prediction_1);
int y = height;
if (width == 4) {
const ptrdiff_t dest_stride4 = dest_stride << 2;
constexpr ptrdiff_t width4 = 4 << 2;
do {
AverageBlend4x4Row(pred_0, pred_1, dst, dest_stride);
dst += dest_stride4;
pred_0 += width4;
pred_1 += width4;
y -= 4;
} while (y != 0);
return;
}
if (width == 8) {
const ptrdiff_t dest_stride2 = dest_stride << 1;
constexpr ptrdiff_t width2 = 8 << 1;
do {
AverageBlend8Row(pred_0, pred_1, dst, dest_stride);
dst += dest_stride2;
pred_0 += width2;
pred_1 += width2;
y -= 2;
} while (y != 0);
return;
}
do {
AverageBlendLargeRow(pred_0, pred_1, width, dst);
dst += dest_stride;
pred_0 += width;
pred_1 += width;
AverageBlendLargeRow(pred_0, pred_1, width, dst);
dst += dest_stride;
pred_0 += width;
pred_1 += width;
y -= 2;
} while (y != 0);
}
void Init8bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(kBitdepth8);
assert(dsp != nullptr);
#if DSP_ENABLED_8BPP_SSE4_1(AverageBlend)
dsp->average_blend = AverageBlend_SSE4_1;
#endif
}
} // namespace
} // namespace low_bitdepth
#if LIBGAV1_MAX_BITDEPTH >= 10
namespace high_bitdepth {
namespace {
constexpr int kInterPostRoundBitPlusOne = 5;
template <const int width, const int offset>
inline void AverageBlendRow(const uint16_t* LIBGAV1_RESTRICT prediction_0,
const uint16_t* LIBGAV1_RESTRICT prediction_1,
const __m128i& compound_offset,
const __m128i& round_offset, const __m128i& max,
const __m128i& zero, uint16_t* LIBGAV1_RESTRICT dst,
const ptrdiff_t dest_stride) {
// pred_0/1 max range is 16b.
const __m128i pred_0 = LoadUnaligned16(prediction_0 + offset);
const __m128i pred_1 = LoadUnaligned16(prediction_1 + offset);
const __m128i pred_00 = _mm_cvtepu16_epi32(pred_0);
const __m128i pred_01 = _mm_unpackhi_epi16(pred_0, zero);
const __m128i pred_10 = _mm_cvtepu16_epi32(pred_1);
const __m128i pred_11 = _mm_unpackhi_epi16(pred_1, zero);
const __m128i pred_add_0 = _mm_add_epi32(pred_00, pred_10);
const __m128i pred_add_1 = _mm_add_epi32(pred_01, pred_11);
const __m128i compound_offset_0 = _mm_sub_epi32(pred_add_0, compound_offset);
const __m128i compound_offset_1 = _mm_sub_epi32(pred_add_1, compound_offset);
// RightShiftWithRounding and Clip3.
const __m128i round_0 = _mm_add_epi32(compound_offset_0, round_offset);
const __m128i round_1 = _mm_add_epi32(compound_offset_1, round_offset);
const __m128i res_0 = _mm_srai_epi32(round_0, kInterPostRoundBitPlusOne);
const __m128i res_1 = _mm_srai_epi32(round_1, kInterPostRoundBitPlusOne);
const __m128i result = _mm_min_epi16(_mm_packus_epi32(res_0, res_1), max);
if (width != 4) {
// Store width=8/16/32/64/128.
StoreUnaligned16(dst + offset, result);
return;
}
assert(width == 4);
StoreLo8(dst, result);
StoreHi8(dst + dest_stride, result);
}
void AverageBlend10bpp_SSE4_1(const void* LIBGAV1_RESTRICT prediction_0,
const void* LIBGAV1_RESTRICT prediction_1,
const int width, const int height,
void* LIBGAV1_RESTRICT const dest,
const ptrdiff_t dst_stride) {
auto* dst = static_cast<uint16_t*>(dest);
const ptrdiff_t dest_stride = dst_stride / sizeof(dst[0]);
const auto* pred_0 = static_cast<const uint16_t*>(prediction_0);
const auto* pred_1 = static_cast<const uint16_t*>(prediction_1);
const __m128i compound_offset =
_mm_set1_epi32(kCompoundOffset + kCompoundOffset);
const __m128i round_offset =
_mm_set1_epi32((1 << kInterPostRoundBitPlusOne) >> 1);
const __m128i max = _mm_set1_epi16((1 << kBitdepth10) - 1);
const __m128i zero = _mm_setzero_si128();
int y = height;
if (width == 4) {
const ptrdiff_t dest_stride2 = dest_stride << 1;
const ptrdiff_t width2 = width << 1;
do {
// row0,1
AverageBlendRow<4, 0>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
dst += dest_stride2;
pred_0 += width2;
pred_1 += width2;
y -= 2;
} while (y != 0);
return;
}
if (width == 8) {
const ptrdiff_t dest_stride2 = dest_stride << 1;
const ptrdiff_t width2 = width << 1;
do {
// row0.
AverageBlendRow<8, 0>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
// row1.
AverageBlendRow<8, 0>(pred_0 + width, pred_1 + width, compound_offset,
round_offset, max, zero, dst + dest_stride,
dest_stride);
dst += dest_stride2;
pred_0 += width2;
pred_1 += width2;
y -= 2;
} while (y != 0);
return;
}
if (width == 16) {
const ptrdiff_t dest_stride2 = dest_stride << 1;
const ptrdiff_t width2 = width << 1;
do {
// row0.
AverageBlendRow<8, 0>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 8>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
// row1.
AverageBlendRow<8, 0>(pred_0 + width, pred_1 + width, compound_offset,
round_offset, max, zero, dst + dest_stride,
dest_stride);
AverageBlendRow<8, 8>(pred_0 + width, pred_1 + width, compound_offset,
round_offset, max, zero, dst + dest_stride,
dest_stride);
dst += dest_stride2;
pred_0 += width2;
pred_1 += width2;
y -= 2;
} while (y != 0);
return;
}
if (width == 32) {
do {
// pred [0 - 15].
AverageBlendRow<8, 0>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 8>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
// pred [16 - 31].
AverageBlendRow<8, 16>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 24>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
dst += dest_stride;
pred_0 += width;
pred_1 += width;
} while (--y != 0);
return;
}
if (width == 64) {
do {
// pred [0 - 31].
AverageBlendRow<8, 0>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 8>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 16>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 24>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
// pred [31 - 63].
AverageBlendRow<8, 32>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 40>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 48>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 56>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
dst += dest_stride;
pred_0 += width;
pred_1 += width;
} while (--y != 0);
return;
}
assert(width == 128);
do {
// pred [0 - 31].
AverageBlendRow<8, 0>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 8>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 16>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 24>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
// pred [31 - 63].
AverageBlendRow<8, 32>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 40>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 48>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 56>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
// pred [64 - 95].
AverageBlendRow<8, 64>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 72>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 80>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 88>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
// pred [96 - 127].
AverageBlendRow<8, 96>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 104>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 112>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
AverageBlendRow<8, 120>(pred_0, pred_1, compound_offset, round_offset, max,
zero, dst, dest_stride);
dst += dest_stride;
pred_0 += width;
pred_1 += width;
} while (--y != 0);
}
void Init10bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(kBitdepth10);
assert(dsp != nullptr);
#if DSP_ENABLED_10BPP_SSE4_1(AverageBlend)
dsp->average_blend = AverageBlend10bpp_SSE4_1;
#endif
}
} // namespace
} // namespace high_bitdepth
#endif // LIBGAV1_MAX_BITDEPTH >= 10
void AverageBlendInit_SSE4_1() {
low_bitdepth::Init8bpp();
#if LIBGAV1_MAX_BITDEPTH >= 10
high_bitdepth::Init10bpp();
#endif // LIBGAV1_MAX_BITDEPTH >= 10
}
} // namespace dsp
} // namespace libgav1
#else // !LIBGAV1_TARGETING_SSE4_1
namespace libgav1 {
namespace dsp {
void AverageBlendInit_SSE4_1() {}
} // namespace dsp
} // namespace libgav1
#endif // LIBGAV1_TARGETING_SSE4_1
|