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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
|
// 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/intrapred_directional.h"
#include "src/utils/cpu.h"
#if LIBGAV1_ENABLE_NEON
#include <arm_neon.h>
#include <algorithm>
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include "src/dsp/arm/common_neon.h"
#include "src/dsp/constants.h"
#include "src/dsp/dsp.h"
#include "src/utils/common.h"
namespace libgav1 {
namespace dsp {
namespace low_bitdepth {
namespace {
// Blend two values based on weights that sum to 32.
inline uint8x8_t WeightedBlend(const uint8x8_t a, const uint8x8_t b,
const uint8x8_t a_weight,
const uint8x8_t b_weight) {
const uint16x8_t a_product = vmull_u8(a, a_weight);
const uint16x8_t b_product = vmull_u8(b, b_weight);
return vrshrn_n_u16(vaddq_u16(a_product, b_product), 5 /*log2(32)*/);
}
// For vertical operations the weights are one constant value.
inline uint8x8_t WeightedBlend(const uint8x8_t a, const uint8x8_t b,
const uint8_t weight) {
return WeightedBlend(a, b, vdup_n_u8(32 - weight), vdup_n_u8(weight));
}
// Fill |left| and |right| with the appropriate values for a given |base_step|.
inline void LoadStepwise(const uint8_t* const source, const uint8x8_t left_step,
const uint8x8_t right_step, uint8x8_t* left,
uint8x8_t* right) {
const uint8x16_t mixed = vld1q_u8(source);
*left = VQTbl1U8(mixed, left_step);
*right = VQTbl1U8(mixed, right_step);
}
// Handle signed step arguments by ignoring the sign. Negative values are
// considered out of range and overwritten later.
inline void LoadStepwise(const uint8_t* const source, const int8x8_t left_step,
const int8x8_t right_step, uint8x8_t* left,
uint8x8_t* right) {
LoadStepwise(source, vreinterpret_u8_s8(left_step),
vreinterpret_u8_s8(right_step), left, right);
}
// Process 4 or 8 |width| by any |height|.
template <int width>
inline void DirectionalZone1_WxH(uint8_t* dst, const ptrdiff_t stride,
const int height, const uint8_t* const top,
const int xstep, const bool upsampled) {
assert(width == 4 || width == 8);
const int upsample_shift = static_cast<int>(upsampled);
const int scale_bits = 6 - upsample_shift;
const int max_base_x = (width + height - 1) << upsample_shift;
const int8x8_t max_base = vdup_n_s8(max_base_x);
const uint8x8_t top_max_base = vdup_n_u8(top[max_base_x]);
const int8x8_t all = vcreate_s8(0x0706050403020100);
const int8x8_t even = vcreate_s8(0x0e0c0a0806040200);
const int8x8_t base_step = upsampled ? even : all;
const int8x8_t right_step = vadd_s8(base_step, vdup_n_s8(1));
int top_x = xstep;
int y = 0;
do {
const int top_base_x = top_x >> scale_bits;
if (top_base_x >= max_base_x) {
for (int i = y; i < height; ++i) {
memset(dst, top[max_base_x], 4 /* width */);
dst += stride;
}
return;
}
const uint8_t shift = ((top_x << upsample_shift) & 0x3F) >> 1;
// Zone2 uses negative values for xstep. Use signed values to compare
// |top_base_x| to |max_base_x|.
const int8x8_t base_v = vadd_s8(vdup_n_s8(top_base_x), base_step);
const uint8x8_t max_base_mask = vclt_s8(base_v, max_base);
// 4 wide subsamples the output. 8 wide subsamples the input.
if (width == 4) {
const uint8x8_t left_values = vld1_u8(top + top_base_x);
const uint8x8_t right_values = RightShiftVector<8>(left_values);
const uint8x8_t value = WeightedBlend(left_values, right_values, shift);
// If |upsampled| is true then extract every other value for output.
const uint8x8_t value_stepped =
vtbl1_u8(value, vreinterpret_u8_s8(base_step));
const uint8x8_t masked_value =
vbsl_u8(max_base_mask, value_stepped, top_max_base);
StoreLo4(dst, masked_value);
} else /* width == 8 */ {
uint8x8_t left_values, right_values;
// WeightedBlend() steps up to Q registers. Downsample the input to avoid
// doing extra calculations.
LoadStepwise(top + top_base_x, base_step, right_step, &left_values,
&right_values);
const uint8x8_t value = WeightedBlend(left_values, right_values, shift);
const uint8x8_t masked_value =
vbsl_u8(max_base_mask, value, top_max_base);
vst1_u8(dst, masked_value);
}
dst += stride;
top_x += xstep;
} while (++y < height);
}
// Process a multiple of 8 |width| by any |height|. Processes horizontally
// before vertically in the hopes of being a little more cache friendly.
inline void DirectionalZone1_WxH(uint8_t* dst, const ptrdiff_t stride,
const int width, const int height,
const uint8_t* const top, const int xstep,
const bool upsampled) {
assert(width % 8 == 0);
const int upsample_shift = static_cast<int>(upsampled);
const int scale_bits = 6 - upsample_shift;
const int max_base_x = (width + height - 1) << upsample_shift;
const int8x8_t max_base = vdup_n_s8(max_base_x);
const uint8x8_t top_max_base = vdup_n_u8(top[max_base_x]);
const int8x8_t all = vcreate_s8(0x0706050403020100);
const int8x8_t even = vcreate_s8(0x0e0c0a0806040200);
const int8x8_t base_step = upsampled ? even : all;
const int8x8_t right_step = vadd_s8(base_step, vdup_n_s8(1));
const int8x8_t block_step = vdup_n_s8(8 << upsample_shift);
int top_x = xstep;
int y = 0;
do {
const int top_base_x = top_x >> scale_bits;
if (top_base_x >= max_base_x) {
for (int i = y; i < height; ++i) {
memset(dst, top[max_base_x], 4 /* width */);
dst += stride;
}
return;
}
const uint8_t shift = ((top_x << upsample_shift) & 0x3F) >> 1;
// Zone2 uses negative values for xstep. Use signed values to compare
// |top_base_x| to |max_base_x|.
int8x8_t base_v = vadd_s8(vdup_n_s8(top_base_x), base_step);
int x = 0;
do {
const uint8x8_t max_base_mask = vclt_s8(base_v, max_base);
// Extract the input values based on |upsampled| here to avoid doing twice
// as many calculations.
uint8x8_t left_values, right_values;
LoadStepwise(top + top_base_x + x, base_step, right_step, &left_values,
&right_values);
const uint8x8_t value = WeightedBlend(left_values, right_values, shift);
const uint8x8_t masked_value =
vbsl_u8(max_base_mask, value, top_max_base);
vst1_u8(dst + x, masked_value);
base_v = vadd_s8(base_v, block_step);
x += 8;
} while (x < width);
top_x += xstep;
dst += stride;
} while (++y < height);
}
void DirectionalIntraPredictorZone1_NEON(void* const dest,
const ptrdiff_t stride,
const void* const top_row,
const int width, const int height,
const int xstep,
const bool upsampled_top) {
const uint8_t* const top = static_cast<const uint8_t*>(top_row);
uint8_t* dst = static_cast<uint8_t*>(dest);
assert(xstep > 0);
const int upsample_shift = static_cast<int>(upsampled_top);
const uint8x8_t all = vcreate_u8(0x0706050403020100);
if (xstep == 64) {
assert(!upsampled_top);
const uint8_t* top_ptr = top + 1;
int y = 0;
do {
memcpy(dst, top_ptr, width);
memcpy(dst + stride, top_ptr + 1, width);
memcpy(dst + 2 * stride, top_ptr + 2, width);
memcpy(dst + 3 * stride, top_ptr + 3, width);
dst += 4 * stride;
top_ptr += 4;
y += 4;
} while (y < height);
} else if (width == 4) {
DirectionalZone1_WxH<4>(dst, stride, height, top, xstep, upsampled_top);
} else if (xstep > 51) {
// 7.11.2.10. Intra edge upsample selection process
// if ( d <= 0 || d >= 40 ) useUpsample = 0
// For |upsample_top| the delta is from vertical so |prediction_angle - 90|.
// In |kDirectionalIntraPredictorDerivative[]| angles less than 51 will meet
// this criteria. The |xstep| value for angle 51 happens to be 51 as well.
// Shallower angles have greater xstep values.
assert(!upsampled_top);
const int max_base_x = ((width + height) - 1);
const uint8x8_t max_base = vdup_n_u8(max_base_x);
const uint8x8_t top_max_base = vdup_n_u8(top[max_base_x]);
const uint8x8_t block_step = vdup_n_u8(8);
int top_x = xstep;
int y = 0;
do {
const int top_base_x = top_x >> 6;
const uint8_t shift = ((top_x << upsample_shift) & 0x3F) >> 1;
uint8x8_t base_v = vadd_u8(vdup_n_u8(top_base_x), all);
int x = 0;
// Only calculate a block of 8 when at least one of the output values is
// within range. Otherwise it can read off the end of |top|.
const int must_calculate_width =
std::min(width, max_base_x - top_base_x + 7) & ~7;
for (; x < must_calculate_width; x += 8) {
const uint8x8_t max_base_mask = vclt_u8(base_v, max_base);
// Since these |xstep| values can not be upsampled the load is
// simplified.
const uint8x8_t left_values = vld1_u8(top + top_base_x + x);
const uint8x8_t right_values = vld1_u8(top + top_base_x + x + 1);
const uint8x8_t value = WeightedBlend(left_values, right_values, shift);
const uint8x8_t masked_value =
vbsl_u8(max_base_mask, value, top_max_base);
vst1_u8(dst + x, masked_value);
base_v = vadd_u8(base_v, block_step);
}
memset(dst + x, top[max_base_x], width - x);
dst += stride;
top_x += xstep;
} while (++y < height);
} else {
DirectionalZone1_WxH(dst, stride, width, height, top, xstep, upsampled_top);
}
}
// Process 4 or 8 |width| by 4 or 8 |height|.
template <int width>
inline void DirectionalZone3_WxH(uint8_t* dest, const ptrdiff_t stride,
const int height,
const uint8_t* const left_column,
const int base_left_y, const int ystep,
const int upsample_shift) {
assert(width == 4 || width == 8);
assert(height == 4 || height == 8);
const int scale_bits = 6 - upsample_shift;
// Zone3 never runs out of left_column values.
assert((width + height - 1) << upsample_shift > // max_base_y
((ystep * width) >> scale_bits) +
(/* base_step */ 1 << upsample_shift) *
(height - 1)); // left_base_y
// Limited improvement for 8x8. ~20% faster for 64x64.
const uint8x8_t all = vcreate_u8(0x0706050403020100);
const uint8x8_t even = vcreate_u8(0x0e0c0a0806040200);
const uint8x8_t base_step = upsample_shift ? even : all;
const uint8x8_t right_step = vadd_u8(base_step, vdup_n_u8(1));
uint8_t* dst = dest;
uint8x8_t left_v[8], right_v[8], value_v[8];
const uint8_t* const left = left_column;
const int index_0 = base_left_y;
LoadStepwise(left + (index_0 >> scale_bits), base_step, right_step,
&left_v[0], &right_v[0]);
value_v[0] = WeightedBlend(left_v[0], right_v[0],
((index_0 << upsample_shift) & 0x3F) >> 1);
const int index_1 = base_left_y + ystep;
LoadStepwise(left + (index_1 >> scale_bits), base_step, right_step,
&left_v[1], &right_v[1]);
value_v[1] = WeightedBlend(left_v[1], right_v[1],
((index_1 << upsample_shift) & 0x3F) >> 1);
const int index_2 = base_left_y + ystep * 2;
LoadStepwise(left + (index_2 >> scale_bits), base_step, right_step,
&left_v[2], &right_v[2]);
value_v[2] = WeightedBlend(left_v[2], right_v[2],
((index_2 << upsample_shift) & 0x3F) >> 1);
const int index_3 = base_left_y + ystep * 3;
LoadStepwise(left + (index_3 >> scale_bits), base_step, right_step,
&left_v[3], &right_v[3]);
value_v[3] = WeightedBlend(left_v[3], right_v[3],
((index_3 << upsample_shift) & 0x3F) >> 1);
const int index_4 = base_left_y + ystep * 4;
LoadStepwise(left + (index_4 >> scale_bits), base_step, right_step,
&left_v[4], &right_v[4]);
value_v[4] = WeightedBlend(left_v[4], right_v[4],
((index_4 << upsample_shift) & 0x3F) >> 1);
const int index_5 = base_left_y + ystep * 5;
LoadStepwise(left + (index_5 >> scale_bits), base_step, right_step,
&left_v[5], &right_v[5]);
value_v[5] = WeightedBlend(left_v[5], right_v[5],
((index_5 << upsample_shift) & 0x3F) >> 1);
const int index_6 = base_left_y + ystep * 6;
LoadStepwise(left + (index_6 >> scale_bits), base_step, right_step,
&left_v[6], &right_v[6]);
value_v[6] = WeightedBlend(left_v[6], right_v[6],
((index_6 << upsample_shift) & 0x3F) >> 1);
const int index_7 = base_left_y + ystep * 7;
LoadStepwise(left + (index_7 >> scale_bits), base_step, right_step,
&left_v[7], &right_v[7]);
value_v[7] = WeightedBlend(left_v[7], right_v[7],
((index_7 << upsample_shift) & 0x3F) >> 1);
// 8x8 transpose.
const uint8x16x2_t b0 = vtrnq_u8(vcombine_u8(value_v[0], value_v[4]),
vcombine_u8(value_v[1], value_v[5]));
const uint8x16x2_t b1 = vtrnq_u8(vcombine_u8(value_v[2], value_v[6]),
vcombine_u8(value_v[3], value_v[7]));
const uint16x8x2_t c0 = vtrnq_u16(vreinterpretq_u16_u8(b0.val[0]),
vreinterpretq_u16_u8(b1.val[0]));
const uint16x8x2_t c1 = vtrnq_u16(vreinterpretq_u16_u8(b0.val[1]),
vreinterpretq_u16_u8(b1.val[1]));
const uint32x4x2_t d0 = vuzpq_u32(vreinterpretq_u32_u16(c0.val[0]),
vreinterpretq_u32_u16(c1.val[0]));
const uint32x4x2_t d1 = vuzpq_u32(vreinterpretq_u32_u16(c0.val[1]),
vreinterpretq_u32_u16(c1.val[1]));
if (width == 4) {
StoreLo4(dst, vreinterpret_u8_u32(vget_low_u32(d0.val[0])));
dst += stride;
StoreLo4(dst, vreinterpret_u8_u32(vget_high_u32(d0.val[0])));
dst += stride;
StoreLo4(dst, vreinterpret_u8_u32(vget_low_u32(d1.val[0])));
dst += stride;
StoreLo4(dst, vreinterpret_u8_u32(vget_high_u32(d1.val[0])));
if (height == 4) return;
dst += stride;
StoreLo4(dst, vreinterpret_u8_u32(vget_low_u32(d0.val[1])));
dst += stride;
StoreLo4(dst, vreinterpret_u8_u32(vget_high_u32(d0.val[1])));
dst += stride;
StoreLo4(dst, vreinterpret_u8_u32(vget_low_u32(d1.val[1])));
dst += stride;
StoreLo4(dst, vreinterpret_u8_u32(vget_high_u32(d1.val[1])));
} else {
vst1_u8(dst, vreinterpret_u8_u32(vget_low_u32(d0.val[0])));
dst += stride;
vst1_u8(dst, vreinterpret_u8_u32(vget_high_u32(d0.val[0])));
dst += stride;
vst1_u8(dst, vreinterpret_u8_u32(vget_low_u32(d1.val[0])));
dst += stride;
vst1_u8(dst, vreinterpret_u8_u32(vget_high_u32(d1.val[0])));
if (height == 4) return;
dst += stride;
vst1_u8(dst, vreinterpret_u8_u32(vget_low_u32(d0.val[1])));
dst += stride;
vst1_u8(dst, vreinterpret_u8_u32(vget_high_u32(d0.val[1])));
dst += stride;
vst1_u8(dst, vreinterpret_u8_u32(vget_low_u32(d1.val[1])));
dst += stride;
vst1_u8(dst, vreinterpret_u8_u32(vget_high_u32(d1.val[1])));
}
}
// Because the source values "move backwards" as the row index increases, the
// indices derived from ystep are generally negative. This is accommodated by
// making sure the relative indices are within [-15, 0] when the function is
// called, and sliding them into the inclusive range [0, 15], relative to a
// lower base address.
constexpr int kPositiveIndexOffset = 15;
// Process 4 or 8 |width| by any |height|.
template <int width>
inline void DirectionalZone2FromLeftCol_WxH(uint8_t* dst,
const ptrdiff_t stride,
const int height,
const uint8_t* const left_column,
const int16x8_t left_y,
const int upsample_shift) {
assert(width == 4 || width == 8);
// The shift argument must be a constant.
int16x8_t offset_y, shift_upsampled = left_y;
if (upsample_shift) {
offset_y = vshrq_n_s16(left_y, 5);
shift_upsampled = vshlq_n_s16(shift_upsampled, 1);
} else {
offset_y = vshrq_n_s16(left_y, 6);
}
// Select values to the left of the starting point.
// The 15th element (and 16th) will be all the way at the end, to the right.
// With a negative ystep everything else will be "left" of them.
// This supports cumulative steps up to 15. We could support up to 16 by doing
// separate loads for |left_values| and |right_values|. vtbl supports 2 Q
// registers as input which would allow for cumulative offsets of 32.
const int16x8_t sampler =
vaddq_s16(offset_y, vdupq_n_s16(kPositiveIndexOffset));
const uint8x8_t left_values = vqmovun_s16(sampler);
const uint8x8_t right_values = vadd_u8(left_values, vdup_n_u8(1));
const int16x8_t shift_masked = vandq_s16(shift_upsampled, vdupq_n_s16(0x3f));
const uint8x8_t shift_mul = vreinterpret_u8_s8(vshrn_n_s16(shift_masked, 1));
const uint8x8_t inv_shift_mul = vsub_u8(vdup_n_u8(32), shift_mul);
int y = 0;
do {
uint8x8_t src_left, src_right;
LoadStepwise(left_column - kPositiveIndexOffset + (y << upsample_shift),
left_values, right_values, &src_left, &src_right);
const uint8x8_t val =
WeightedBlend(src_left, src_right, inv_shift_mul, shift_mul);
if (width == 4) {
StoreLo4(dst, val);
} else {
vst1_u8(dst, val);
}
dst += stride;
} while (++y < height);
}
// Process 4 or 8 |width| by any |height|.
template <int width>
inline void DirectionalZone1Blend_WxH(uint8_t* dest, const ptrdiff_t stride,
const int height,
const uint8_t* const top_row,
int zone_bounds, int top_x,
const int xstep,
const int upsample_shift) {
assert(width == 4 || width == 8);
const int scale_bits_x = 6 - upsample_shift;
const uint8x8_t all = vcreate_u8(0x0706050403020100);
const uint8x8_t even = vcreate_u8(0x0e0c0a0806040200);
const uint8x8_t base_step = upsample_shift ? even : all;
const uint8x8_t right_step = vadd_u8(base_step, vdup_n_u8(1));
int y = 0;
do {
const uint8_t* const src = top_row + (top_x >> scale_bits_x);
uint8x8_t left, right;
LoadStepwise(src, base_step, right_step, &left, &right);
const uint8_t shift = ((top_x << upsample_shift) & 0x3f) >> 1;
const uint8x8_t val = WeightedBlend(left, right, shift);
uint8x8_t dst_blend = vld1_u8(dest);
// |zone_bounds| values can be negative.
uint8x8_t blend =
vcge_s8(vreinterpret_s8_u8(all), vdup_n_s8((zone_bounds >> 6)));
uint8x8_t output = vbsl_u8(blend, val, dst_blend);
if (width == 4) {
StoreLo4(dest, output);
} else {
vst1_u8(dest, output);
}
dest += stride;
zone_bounds += xstep;
top_x -= xstep;
} while (++y < height);
}
// The height at which a load of 16 bytes will not contain enough source pixels
// from |left_column| to supply an accurate row when computing 8 pixels at a
// time. The values are found by inspection. By coincidence, all angles that
// satisfy (ystep >> 6) == 2 map to the same value, so it is enough to look up
// by ystep >> 6. The largest index for this lookup is 1023 >> 6 == 15.
constexpr int kDirectionalZone2ShuffleInvalidHeight[16] = {
1024, 1024, 16, 16, 16, 16, 0, 0, 18, 0, 0, 0, 0, 0, 0, 40};
// 7.11.2.4 (8) 90 < angle > 180
// The strategy for these functions (4xH and 8+xH) is to know how many blocks
// can be processed with just pixels from |top_ptr|, then handle mixed blocks,
// then handle only blocks that take from |left_ptr|. Additionally, a fast
// index-shuffle approach is used for pred values from |left_column| in sections
// that permit it.
inline void DirectionalZone2_4xH(uint8_t* dst, const ptrdiff_t stride,
const uint8_t* const top_row,
const uint8_t* const left_column,
const int height, const int xstep,
const int ystep, const bool upsampled_top,
const bool upsampled_left) {
const int upsample_left_shift = static_cast<int>(upsampled_left);
const int upsample_top_shift = static_cast<int>(upsampled_top);
// Helper vector.
const int16x8_t zero_to_seven = {0, 1, 2, 3, 4, 5, 6, 7};
// Loop incrementers for moving by block (4xN). Vertical still steps by 8. If
// it's only 4, it will be finished in the first iteration.
const ptrdiff_t stride8 = stride << 3;
const int xstep8 = xstep << 3;
const int min_height = (height == 4) ? 4 : 8;
// All columns from |min_top_only_x| to the right will only need |top_row| to
// compute and can therefore call the Zone1 functions. This assumes |xstep| is
// at least 3.
assert(xstep >= 3);
const int min_top_only_x = std::min((height * xstep) >> 6, /* width */ 4);
// For steep angles, the source pixels from |left_column| may not fit in a
// 16-byte load for shuffling.
// TODO(petersonab): Find a more precise formula for this subject to x.
// TODO(johannkoenig): Revisit this for |width| == 4.
const int max_shuffle_height =
std::min(kDirectionalZone2ShuffleInvalidHeight[ystep >> 6], height);
// Offsets the original zone bound value to simplify x < (y+1)*xstep/64 -1
int xstep_bounds_base = (xstep == 64) ? 0 : xstep - 1;
const int left_base_increment = ystep >> 6;
const int ystep_remainder = ystep & 0x3F;
// If the 64 scaling is regarded as a decimal point, the first value of the
// left_y vector omits the portion which is covered under the left_column
// offset. The following values need the full ystep as a relative offset.
int16x8_t left_y = vmulq_n_s16(zero_to_seven, -ystep);
left_y = vaddq_s16(left_y, vdupq_n_s16(-ystep_remainder));
// This loop treats each set of 4 columns in 3 stages with y-value boundaries.
// The first stage, before the first y-loop, covers blocks that are only
// computed from the top row. The second stage, comprising two y-loops, covers
// blocks that have a mixture of values computed from top or left. The final
// stage covers blocks that are only computed from the left.
if (min_top_only_x > 0) {
// Round down to the nearest multiple of 8.
// TODO(johannkoenig): This never hits for Wx4 blocks but maybe it should.
const int max_top_only_y = std::min((1 << 6) / xstep, height) & ~7;
DirectionalZone1_WxH<4>(dst, stride, max_top_only_y, top_row, -xstep,
upsampled_top);
if (max_top_only_y == height) return;
int y = max_top_only_y;
dst += stride * y;
const int xstep_y = xstep * y;
// All rows from |min_left_only_y| down for this set of columns only need
// |left_column| to compute.
const int min_left_only_y = std::min((4 << 6) / xstep, height);
// At high angles such that min_left_only_y < 8, ystep is low and xstep is
// high. This means that max_shuffle_height is unbounded and xstep_bounds
// will overflow in 16 bits. This is prevented by stopping the first
// blending loop at min_left_only_y for such cases, which means we skip over
// the second blending loop as well.
const int left_shuffle_stop_y =
std::min(max_shuffle_height, min_left_only_y);
int xstep_bounds = xstep_bounds_base + xstep_y;
int top_x = -xstep - xstep_y;
// +8 increment is OK because if height is 4 this only goes once.
for (; y < left_shuffle_stop_y;
y += 8, dst += stride8, xstep_bounds += xstep8, top_x -= xstep8) {
DirectionalZone2FromLeftCol_WxH<4>(
dst, stride, min_height,
left_column + ((y - left_base_increment) << upsample_left_shift),
left_y, upsample_left_shift);
DirectionalZone1Blend_WxH<4>(dst, stride, min_height, top_row,
xstep_bounds, top_x, xstep,
upsample_top_shift);
}
// Pick up from the last y-value, using the slower but secure method for
// left prediction.
const int16_t base_left_y = vgetq_lane_s16(left_y, 0);
for (; y < min_left_only_y;
y += 8, dst += stride8, xstep_bounds += xstep8, top_x -= xstep8) {
DirectionalZone3_WxH<4>(
dst, stride, min_height,
left_column + ((y - left_base_increment) << upsample_left_shift),
base_left_y, -ystep, upsample_left_shift);
DirectionalZone1Blend_WxH<4>(dst, stride, min_height, top_row,
xstep_bounds, top_x, xstep,
upsample_top_shift);
}
// Loop over y for left_only rows.
for (; y < height; y += 8, dst += stride8) {
DirectionalZone3_WxH<4>(
dst, stride, min_height,
left_column + ((y - left_base_increment) << upsample_left_shift),
base_left_y, -ystep, upsample_left_shift);
}
} else {
DirectionalZone1_WxH<4>(dst, stride, height, top_row, -xstep,
upsampled_top);
}
}
// Process a multiple of 8 |width|.
inline void DirectionalZone2_8(uint8_t* const dst, const ptrdiff_t stride,
const uint8_t* const top_row,
const uint8_t* const left_column,
const int width, const int height,
const int xstep, const int ystep,
const bool upsampled_top,
const bool upsampled_left) {
const int upsample_left_shift = static_cast<int>(upsampled_left);
const int upsample_top_shift = static_cast<int>(upsampled_top);
// Helper vector.
const int16x8_t zero_to_seven = {0, 1, 2, 3, 4, 5, 6, 7};
// Loop incrementers for moving by block (8x8). This function handles blocks
// with height 4 as well. They are calculated in one pass so these variables
// do not get used.
const ptrdiff_t stride8 = stride << 3;
const int xstep8 = xstep << 3;
const int ystep8 = ystep << 3;
// Process Wx4 blocks.
const int min_height = (height == 4) ? 4 : 8;
// All columns from |min_top_only_x| to the right will only need |top_row| to
// compute and can therefore call the Zone1 functions. This assumes |xstep| is
// at least 3.
assert(xstep >= 3);
const int min_top_only_x = std::min((height * xstep) >> 6, width);
// For steep angles, the source pixels from |left_column| may not fit in a
// 16-byte load for shuffling.
// TODO(petersonab): Find a more precise formula for this subject to x.
const int max_shuffle_height =
std::min(kDirectionalZone2ShuffleInvalidHeight[ystep >> 6], height);
// Offsets the original zone bound value to simplify x < (y+1)*xstep/64 -1
int xstep_bounds_base = (xstep == 64) ? 0 : xstep - 1;
const int left_base_increment = ystep >> 6;
const int ystep_remainder = ystep & 0x3F;
const int left_base_increment8 = ystep8 >> 6;
const int ystep_remainder8 = ystep8 & 0x3F;
const int16x8_t increment_left8 = vdupq_n_s16(ystep_remainder8);
// If the 64 scaling is regarded as a decimal point, the first value of the
// left_y vector omits the portion which is covered under the left_column
// offset. Following values need the full ystep as a relative offset.
int16x8_t left_y = vmulq_n_s16(zero_to_seven, -ystep);
left_y = vaddq_s16(left_y, vdupq_n_s16(-ystep_remainder));
// This loop treats each set of 4 columns in 3 stages with y-value boundaries.
// The first stage, before the first y-loop, covers blocks that are only
// computed from the top row. The second stage, comprising two y-loops, covers
// blocks that have a mixture of values computed from top or left. The final
// stage covers blocks that are only computed from the left.
int x = 0;
for (int left_offset = -left_base_increment; x < min_top_only_x; x += 8,
xstep_bounds_base -= (8 << 6),
left_y = vsubq_s16(left_y, increment_left8),
left_offset -= left_base_increment8) {
uint8_t* dst_x = dst + x;
// Round down to the nearest multiple of 8.
const int max_top_only_y = std::min(((x + 1) << 6) / xstep, height) & ~7;
DirectionalZone1_WxH<8>(dst_x, stride, max_top_only_y,
top_row + (x << upsample_top_shift), -xstep,
upsampled_top);
if (max_top_only_y == height) continue;
int y = max_top_only_y;
dst_x += stride * y;
const int xstep_y = xstep * y;
// All rows from |min_left_only_y| down for this set of columns only need
// |left_column| to compute.
const int min_left_only_y = std::min(((x + 8) << 6) / xstep, height);
// At high angles such that min_left_only_y < 8, ystep is low and xstep is
// high. This means that max_shuffle_height is unbounded and xstep_bounds
// will overflow in 16 bits. This is prevented by stopping the first
// blending loop at min_left_only_y for such cases, which means we skip over
// the second blending loop as well.
const int left_shuffle_stop_y =
std::min(max_shuffle_height, min_left_only_y);
int xstep_bounds = xstep_bounds_base + xstep_y;
int top_x = -xstep - xstep_y;
for (; y < left_shuffle_stop_y;
y += 8, dst_x += stride8, xstep_bounds += xstep8, top_x -= xstep8) {
DirectionalZone2FromLeftCol_WxH<8>(
dst_x, stride, min_height,
left_column + ((left_offset + y) << upsample_left_shift), left_y,
upsample_left_shift);
DirectionalZone1Blend_WxH<8>(
dst_x, stride, min_height, top_row + (x << upsample_top_shift),
xstep_bounds, top_x, xstep, upsample_top_shift);
}
// Pick up from the last y-value, using the slower but secure method for
// left prediction.
const int16_t base_left_y = vgetq_lane_s16(left_y, 0);
for (; y < min_left_only_y;
y += 8, dst_x += stride8, xstep_bounds += xstep8, top_x -= xstep8) {
DirectionalZone3_WxH<8>(
dst_x, stride, min_height,
left_column + ((left_offset + y) << upsample_left_shift), base_left_y,
-ystep, upsample_left_shift);
DirectionalZone1Blend_WxH<8>(
dst_x, stride, min_height, top_row + (x << upsample_top_shift),
xstep_bounds, top_x, xstep, upsample_top_shift);
}
// Loop over y for left_only rows.
for (; y < height; y += 8, dst_x += stride8) {
DirectionalZone3_WxH<8>(
dst_x, stride, min_height,
left_column + ((left_offset + y) << upsample_left_shift), base_left_y,
-ystep, upsample_left_shift);
}
}
// TODO(johannkoenig): May be able to remove this branch.
if (x < width) {
DirectionalZone1_WxH(dst + x, stride, width - x, height,
top_row + (x << upsample_top_shift), -xstep,
upsampled_top);
}
}
void DirectionalIntraPredictorZone2_NEON(
void* const dest, const ptrdiff_t stride, const void* const top_row,
const void* const left_column, const int width, const int height,
const int xstep, const int ystep, const bool upsampled_top,
const bool upsampled_left) {
// Increasing the negative buffer for this function allows more rows to be
// processed at a time without branching in an inner loop to check the base.
uint8_t top_buffer[288];
uint8_t left_buffer[288];
memcpy(top_buffer + 128, static_cast<const uint8_t*>(top_row) - 16, 160);
memcpy(left_buffer + 128, static_cast<const uint8_t*>(left_column) - 16, 160);
const uint8_t* top_ptr = top_buffer + 144;
const uint8_t* left_ptr = left_buffer + 144;
auto* dst = static_cast<uint8_t*>(dest);
if (width == 4) {
DirectionalZone2_4xH(dst, stride, top_ptr, left_ptr, height, xstep, ystep,
upsampled_top, upsampled_left);
} else {
DirectionalZone2_8(dst, stride, top_ptr, left_ptr, width, height, xstep,
ystep, upsampled_top, upsampled_left);
}
}
void DirectionalIntraPredictorZone3_NEON(void* const dest,
const ptrdiff_t stride,
const void* const left_column,
const int width, const int height,
const int ystep,
const bool upsampled_left) {
const auto* const left = static_cast<const uint8_t*>(left_column);
assert(ystep > 0);
const int upsample_shift = static_cast<int>(upsampled_left);
const int scale_bits = 6 - upsample_shift;
const int base_step = 1 << upsample_shift;
if (width == 4 || height == 4) {
// This block can handle all sizes but the specializations for other sizes
// are faster.
const uint8x8_t all = vcreate_u8(0x0706050403020100);
const uint8x8_t even = vcreate_u8(0x0e0c0a0806040200);
const uint8x8_t base_step_v = upsampled_left ? even : all;
const uint8x8_t right_step = vadd_u8(base_step_v, vdup_n_u8(1));
int y = 0;
do {
int x = 0;
do {
uint8_t* dst = static_cast<uint8_t*>(dest);
dst += y * stride + x;
uint8x8_t left_v[4], right_v[4], value_v[4];
const int ystep_base = ystep * x;
const int offset = y * base_step;
const int index_0 = ystep_base + ystep * 1;
LoadStepwise(left + offset + (index_0 >> scale_bits), base_step_v,
right_step, &left_v[0], &right_v[0]);
value_v[0] = WeightedBlend(left_v[0], right_v[0],
((index_0 << upsample_shift) & 0x3F) >> 1);
const int index_1 = ystep_base + ystep * 2;
LoadStepwise(left + offset + (index_1 >> scale_bits), base_step_v,
right_step, &left_v[1], &right_v[1]);
value_v[1] = WeightedBlend(left_v[1], right_v[1],
((index_1 << upsample_shift) & 0x3F) >> 1);
const int index_2 = ystep_base + ystep * 3;
LoadStepwise(left + offset + (index_2 >> scale_bits), base_step_v,
right_step, &left_v[2], &right_v[2]);
value_v[2] = WeightedBlend(left_v[2], right_v[2],
((index_2 << upsample_shift) & 0x3F) >> 1);
const int index_3 = ystep_base + ystep * 4;
LoadStepwise(left + offset + (index_3 >> scale_bits), base_step_v,
right_step, &left_v[3], &right_v[3]);
value_v[3] = WeightedBlend(left_v[3], right_v[3],
((index_3 << upsample_shift) & 0x3F) >> 1);
// 8x4 transpose.
const uint8x8x2_t b0 = vtrn_u8(value_v[0], value_v[1]);
const uint8x8x2_t b1 = vtrn_u8(value_v[2], value_v[3]);
const uint16x4x2_t c0 = vtrn_u16(vreinterpret_u16_u8(b0.val[0]),
vreinterpret_u16_u8(b1.val[0]));
const uint16x4x2_t c1 = vtrn_u16(vreinterpret_u16_u8(b0.val[1]),
vreinterpret_u16_u8(b1.val[1]));
StoreLo4(dst, vreinterpret_u8_u16(c0.val[0]));
dst += stride;
StoreLo4(dst, vreinterpret_u8_u16(c1.val[0]));
dst += stride;
StoreLo4(dst, vreinterpret_u8_u16(c0.val[1]));
dst += stride;
StoreLo4(dst, vreinterpret_u8_u16(c1.val[1]));
if (height > 4) {
dst += stride;
StoreHi4(dst, vreinterpret_u8_u16(c0.val[0]));
dst += stride;
StoreHi4(dst, vreinterpret_u8_u16(c1.val[0]));
dst += stride;
StoreHi4(dst, vreinterpret_u8_u16(c0.val[1]));
dst += stride;
StoreHi4(dst, vreinterpret_u8_u16(c1.val[1]));
}
x += 4;
} while (x < width);
y += 8;
} while (y < height);
} else { // 8x8 at a time.
// Limited improvement for 8x8. ~20% faster for 64x64.
int y = 0;
do {
int x = 0;
do {
uint8_t* dst = static_cast<uint8_t*>(dest);
dst += y * stride + x;
const int ystep_base = ystep * (x + 1);
DirectionalZone3_WxH<8>(dst, stride, 8, left + (y << upsample_shift),
ystep_base, ystep, upsample_shift);
x += 8;
} while (x < width);
y += 8;
} while (y < height);
}
}
void Init8bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(kBitdepth8);
assert(dsp != nullptr);
dsp->directional_intra_predictor_zone1 = DirectionalIntraPredictorZone1_NEON;
dsp->directional_intra_predictor_zone2 = DirectionalIntraPredictorZone2_NEON;
dsp->directional_intra_predictor_zone3 = DirectionalIntraPredictorZone3_NEON;
}
} // namespace
} // namespace low_bitdepth
#if LIBGAV1_MAX_BITDEPTH >= 10
namespace high_bitdepth {
namespace {
// Blend two values based on weights that sum to 32.
inline uint16x4_t WeightedBlend(const uint16x4_t a, const uint16x4_t b,
const int a_weight, const int b_weight) {
const uint16x4_t a_product = vmul_n_u16(a, a_weight);
const uint16x4_t sum = vmla_n_u16(a_product, b, b_weight);
return vrshr_n_u16(sum, 5 /*log2(32)*/);
}
// Blend two values based on weights that sum to 32.
inline uint16x8_t WeightedBlend(const uint16x8_t a, const uint16x8_t b,
const uint16_t a_weight,
const uint16_t b_weight) {
const uint16x8_t a_product = vmulq_n_u16(a, a_weight);
const uint16x8_t sum = vmlaq_n_u16(a_product, b, b_weight);
return vrshrq_n_u16(sum, 5 /*log2(32)*/);
}
// Each element of |dest| contains values associated with one weight value.
inline void LoadEdgeVals(uint16x4x2_t* dest, const uint16_t* const source,
const bool upsampled) {
if (upsampled) {
*dest = vld2_u16(source);
} else {
dest->val[0] = vld1_u16(source);
dest->val[1] = vld1_u16(source + 1);
}
}
// Each element of |dest| contains values associated with one weight value.
inline void LoadEdgeVals(uint16x8x2_t* dest, const uint16_t* const source,
const bool upsampled) {
if (upsampled) {
*dest = vld2q_u16(source);
} else {
dest->val[0] = vld1q_u16(source);
dest->val[1] = vld1q_u16(source + 1);
}
}
template <bool upsampled>
inline void DirectionalZone1_4xH(uint16_t* dst, const ptrdiff_t stride,
const int height, const uint16_t* const top,
const int xstep) {
const int upsample_shift = static_cast<int>(upsampled);
const int index_scale_bits = 6 - upsample_shift;
const int max_base_x = (4 + height - 1) << upsample_shift;
const int16x4_t max_base = vdup_n_s16(max_base_x);
const uint16x4_t final_top_val = vdup_n_u16(top[max_base_x]);
const int16x4_t index_offset = {0, 1, 2, 3};
// All rows from |min_corner_only_y| down will simply use Memset.
// |max_base_x| is always greater than |height|, so clipping the denominator
// to 1 is enough to make the logic work.
const int xstep_units = std::max(xstep >> index_scale_bits, 1);
const int min_corner_only_y = std::min(max_base_x / xstep_units, height);
int top_x = xstep;
int y = 0;
for (; y < min_corner_only_y; ++y, dst += stride, top_x += xstep) {
const int top_base_x = top_x >> index_scale_bits;
// To accommodate reuse of this function in Zone2, permit negative values
// for |xstep|.
const uint16_t shift_0 = (LeftShift(top_x, upsample_shift) & 0x3F) >> 1;
const uint16_t shift_1 = 32 - shift_0;
// Use signed values to compare |top_base_x| to |max_base_x|.
const int16x4_t base_x = vadd_s16(vdup_n_s16(top_base_x), index_offset);
const uint16x4_t max_base_mask = vclt_s16(base_x, max_base);
uint16x4x2_t sampled_top_row;
LoadEdgeVals(&sampled_top_row, top + top_base_x, upsampled);
const uint16x4_t combined = WeightedBlend(
sampled_top_row.val[0], sampled_top_row.val[1], shift_1, shift_0);
// If |upsampled| is true then extract every other value for output.
const uint16x4_t masked_result =
vbsl_u16(max_base_mask, combined, final_top_val);
vst1_u16(dst, masked_result);
}
for (; y < height; ++y) {
Memset(dst, top[max_base_x], 4 /* width */);
dst += stride;
}
}
// Process a multiple of 8 |width| by any |height|. Processes horizontally
// before vertically in the hopes of being a little more cache friendly.
template <bool upsampled>
inline void DirectionalZone1_WxH(uint16_t* dst, const ptrdiff_t stride,
const int width, const int height,
const uint16_t* const top, const int xstep) {
assert(width % 8 == 0);
const int upsample_shift = static_cast<int>(upsampled);
const int index_scale_bits = 6 - upsample_shift;
const int max_base_index = (width + height - 1) << upsample_shift;
const int16x8_t max_base_x = vdupq_n_s16(max_base_index);
const uint16x8_t final_top_val = vdupq_n_u16(top[max_base_index]);
const int16x8_t index_offset = {0, 1, 2, 3, 4, 5, 6, 7};
const int base_step = 1 << upsample_shift;
const int base_step8 = base_step << 3;
const int16x8_t block_step = vdupq_n_s16(base_step8);
// All rows from |min_corner_only_y| down will simply use Memset.
// |max_base_x| is always greater than |height|, so clipping the denominator
// to 1 is enough to make the logic work.
const int xstep_units = std::max(xstep >> index_scale_bits, 1);
const int min_corner_only_y = std::min(max_base_index / xstep_units, height);
int top_x = xstep;
int y = 0;
for (; y < min_corner_only_y; ++y, dst += stride, top_x += xstep) {
int top_base_x = top_x >> index_scale_bits;
// To accommodate reuse of this function in Zone2, permit negative values
// for |xstep|.
const uint16_t shift_0 = (LeftShift(top_x, upsample_shift) & 0x3F) >> 1;
const uint16_t shift_1 = 32 - shift_0;
// Use signed values to compare |top_base_x| to |max_base_x|.
int16x8_t base_x = vaddq_s16(vdupq_n_s16(top_base_x), index_offset);
int x = 0;
do {
const uint16x8_t max_base_mask = vcltq_s16(base_x, max_base_x);
uint16x8x2_t sampled_top_row;
LoadEdgeVals(&sampled_top_row, top + top_base_x, upsampled);
const uint16x8_t combined = WeightedBlend(
sampled_top_row.val[0], sampled_top_row.val[1], shift_1, shift_0);
const uint16x8_t masked_result =
vbslq_u16(max_base_mask, combined, final_top_val);
vst1q_u16(dst + x, masked_result);
base_x = vaddq_s16(base_x, block_step);
top_base_x += base_step8;
x += 8;
} while (x < width);
}
for (int i = y; i < height; ++i) {
Memset(dst, top[max_base_index], width);
dst += stride;
}
}
// Process a multiple of 8 |width| by any |height|. Processes horizontally
// before vertically in the hopes of being a little more cache friendly.
inline void DirectionalZone1_Large(uint16_t* dst, const ptrdiff_t stride,
const int width, const int height,
const uint16_t* const top, const int xstep,
const bool upsampled) {
assert(width % 8 == 0);
const int upsample_shift = static_cast<int>(upsampled);
const int index_scale_bits = 6 - upsample_shift;
const int max_base_index = (width + height - 1) << upsample_shift;
const int16x8_t max_base_x = vdupq_n_s16(max_base_index);
const uint16x8_t final_top_val = vdupq_n_u16(top[max_base_index]);
const int16x8_t index_offset = {0, 1, 2, 3, 4, 5, 6, 7};
const int base_step = 1 << upsample_shift;
const int base_step8 = base_step << 3;
const int16x8_t block_step = vdupq_n_s16(base_step8);
// All rows from |min_corner_only_y| down will simply use Memset.
// |max_base_x| is always greater than |height|, so clipping the denominator
// to 1 is enough to make the logic work.
const int xstep_units = std::max(xstep >> index_scale_bits, 1);
const int min_corner_only_y = std::min(max_base_index / xstep_units, height);
// Rows up to this y-value can be computed without checking for bounds.
const int max_no_corner_y = std::min(
((max_base_index - (base_step * width)) << index_scale_bits) / xstep,
height);
// No need to check for exceeding |max_base_x| in the first loop.
int y = 0;
int top_x = xstep;
for (; y < max_no_corner_y; ++y, dst += stride, top_x += xstep) {
int top_base_x = top_x >> index_scale_bits;
// To accommodate reuse of this function in Zone2, permit negative values
// for |xstep|.
const uint16_t shift_0 = (LeftShift(top_x, upsample_shift) & 0x3F) >> 1;
const uint16_t shift_1 = 32 - shift_0;
int x = 0;
do {
uint16x8x2_t sampled_top_row;
LoadEdgeVals(&sampled_top_row, top + top_base_x, upsampled);
const uint16x8_t combined = WeightedBlend(
sampled_top_row.val[0], sampled_top_row.val[1], shift_1, shift_0);
vst1q_u16(dst + x, combined);
top_base_x += base_step8;
x += 8;
} while (x < width);
}
for (; y < min_corner_only_y; ++y, dst += stride, top_x += xstep) {
int top_base_x = top_x >> index_scale_bits;
// To accommodate reuse of this function in Zone2, permit negative values
// for |xstep|.
const uint16_t shift_0 = (LeftShift(top_x, upsample_shift) & 0x3F) >> 1;
const uint16_t shift_1 = 32 - shift_0;
// Use signed values to compare |top_base_x| to |max_base_x|.
int16x8_t base_x = vaddq_s16(vdupq_n_s16(top_base_x), index_offset);
int x = 0;
const int min_corner_only_x =
std::min(width, ((max_base_index - top_base_x) >> upsample_shift) + 7) &
~7;
for (; x < min_corner_only_x; x += 8, top_base_x += base_step8,
base_x = vaddq_s16(base_x, block_step)) {
const uint16x8_t max_base_mask = vcltq_s16(base_x, max_base_x);
uint16x8x2_t sampled_top_row;
LoadEdgeVals(&sampled_top_row, top + top_base_x, upsampled);
const uint16x8_t combined = WeightedBlend(
sampled_top_row.val[0], sampled_top_row.val[1], shift_1, shift_0);
const uint16x8_t masked_result =
vbslq_u16(max_base_mask, combined, final_top_val);
vst1q_u16(dst + x, masked_result);
}
// Corner-only section of the row.
Memset(dst + x, top[max_base_index], width - x);
}
for (; y < height; ++y) {
Memset(dst, top[max_base_index], width);
dst += stride;
}
}
void DirectionalIntraPredictorZone1_NEON(void* const dest, ptrdiff_t stride,
const void* const top_row,
const int width, const int height,
const int xstep,
const bool upsampled_top) {
const uint16_t* const top = static_cast<const uint16_t*>(top_row);
uint16_t* dst = static_cast<uint16_t*>(dest);
stride /= sizeof(top[0]);
assert(xstep > 0);
if (xstep == 64) {
assert(!upsampled_top);
const uint16_t* top_ptr = top + 1;
const int width_bytes = width * sizeof(top[0]);
int y = height;
do {
memcpy(dst, top_ptr, width_bytes);
memcpy(dst + stride, top_ptr + 1, width_bytes);
memcpy(dst + 2 * stride, top_ptr + 2, width_bytes);
memcpy(dst + 3 * stride, top_ptr + 3, width_bytes);
dst += 4 * stride;
top_ptr += 4;
y -= 4;
} while (y != 0);
} else {
if (width == 4) {
if (upsampled_top) {
DirectionalZone1_4xH<true>(dst, stride, height, top, xstep);
} else {
DirectionalZone1_4xH<false>(dst, stride, height, top, xstep);
}
} else if (width >= 32) {
if (upsampled_top) {
DirectionalZone1_Large(dst, stride, width, height, top, xstep, true);
} else {
DirectionalZone1_Large(dst, stride, width, height, top, xstep, false);
}
} else if (upsampled_top) {
DirectionalZone1_WxH<true>(dst, stride, width, height, top, xstep);
} else {
DirectionalZone1_WxH<false>(dst, stride, width, height, top, xstep);
}
}
}
// -----------------------------------------------------------------------------
// Zone 3
// This can be considered "the transpose of Zone 1." In Zone 1, the fractional
// step applies when moving vertically in the destination block, connected to
// the change in |y|, whereas in this mode, the step applies when moving
// horizontally, connected to the change in |x|. This makes vectorization very
// complicated in row-order, because a given vector may need source pixels that
// span 16 or 32 pixels in steep angles, requiring multiple expensive table
// lookups and checked loads. Rather than work in row order, it is simpler to
// compute |dest| in column order, and then store the transposed results.
// Compute 4x4 sub-blocks.
// Example of computed sub-blocks of a 4x8 block before and after transpose:
// 00 10 20 30 00 01 02 03
// 01 11 21 31 10 11 12 13
// 02 12 22 32 20 21 22 23
// 03 13 23 33 30 31 32 33
// ----------- --> -----------
// 40 50 60 70 40 41 42 43
// 41 51 61 71 50 51 52 53
// 42 52 62 72 60 61 62 63
// 43 53 63 73 70 71 72 73
template <bool upsampled>
inline void DirectionalZone3_4x4(uint8_t* dst, const ptrdiff_t stride,
const uint16_t* const left, const int ystep,
const int base_left_y = 0) {
const int upsample_shift = static_cast<int>(upsampled);
const int index_scale_bits = 6 - upsample_shift;
// Compute one column at a time, then transpose for storage.
uint16x4_t result[4];
int left_y = base_left_y + ystep;
int left_offset = left_y >> index_scale_bits;
int shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
int shift_1 = 32 - shift_0;
uint16x4x2_t sampled_left_col;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[0] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[1] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[2] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[3] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
Transpose4x4(result);
Store4(dst, result[0]);
dst += stride;
Store4(dst, result[1]);
dst += stride;
Store4(dst, result[2]);
dst += stride;
Store4(dst, result[3]);
}
template <bool upsampled>
inline void DirectionalZone3_4xH(uint8_t* dest, const ptrdiff_t stride,
const int height, const uint16_t* const left,
const int ystep) {
const int upsample_shift = static_cast<int>(upsampled);
int y = 0;
do {
DirectionalZone3_4x4<upsampled>(dest, stride, left + (y << upsample_shift),
ystep);
dest += 4 * stride;
y += 4;
} while (y < height);
}
template <bool upsampled>
inline void DirectionalZone3_Wx4(uint8_t* dest, const ptrdiff_t stride,
const int width, const uint16_t* const left,
const int ystep) {
int x = 0;
int base_left_y = 0;
do {
// TODO(petersonab): Establish 8x4 transpose to reserve this function for
// 8x4 and 16x4.
DirectionalZone3_4x4<upsampled>(dest + 2 * x, stride, left, ystep,
base_left_y);
base_left_y += 4 * ystep;
x += 4;
} while (x < width);
}
template <bool upsampled>
inline void DirectionalZone3_8x8(uint8_t* dest, const ptrdiff_t stride,
const uint16_t* const left, const int ystep,
const int base_left_y = 0) {
const int upsample_shift = static_cast<int>(upsampled);
const int index_scale_bits = 6 - upsample_shift;
// Compute one column at a time, then transpose for storage.
uint16x8_t result[8];
int left_y = base_left_y + ystep;
uint16x8x2_t sampled_left_col;
int left_offset = left_y >> index_scale_bits;
int shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
int shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[0] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[1] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[2] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[3] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[4] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[5] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[6] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
left_y += ystep;
left_offset = left_y >> index_scale_bits;
shift_0 = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1;
shift_1 = 32 - shift_0;
LoadEdgeVals(&sampled_left_col, &left[left_offset], upsampled);
result[7] = WeightedBlend(sampled_left_col.val[0], sampled_left_col.val[1],
shift_1, shift_0);
Transpose8x8(result);
Store8(dest, result[0]);
dest += stride;
Store8(dest, result[1]);
dest += stride;
Store8(dest, result[2]);
dest += stride;
Store8(dest, result[3]);
dest += stride;
Store8(dest, result[4]);
dest += stride;
Store8(dest, result[5]);
dest += stride;
Store8(dest, result[6]);
dest += stride;
Store8(dest, result[7]);
}
template <bool upsampled>
inline void DirectionalZone3_WxH(uint8_t* dest, const ptrdiff_t stride,
const int width, const int height,
const uint16_t* const left, const int ystep) {
const int upsample_shift = static_cast<int>(upsampled);
// Zone3 never runs out of left_column values.
assert((width + height - 1) << upsample_shift > // max_base_y
((ystep * width) >> (6 - upsample_shift)) +
(/* base_step */ 1 << upsample_shift) *
(height - 1)); // left_base_y
int y = 0;
do {
int x = 0;
uint8_t* dst_x = dest + y * stride;
do {
const int base_left_y = ystep * x;
DirectionalZone3_8x8<upsampled>(
dst_x, stride, left + (y << upsample_shift), ystep, base_left_y);
dst_x += 8 * sizeof(uint16_t);
x += 8;
} while (x < width);
y += 8;
} while (y < height);
}
void DirectionalIntraPredictorZone3_NEON(void* const dest,
const ptrdiff_t stride,
const void* const left_column,
const int width, const int height,
const int ystep,
const bool upsampled_left) {
const uint16_t* const left = static_cast<const uint16_t*>(left_column);
uint8_t* dst = static_cast<uint8_t*>(dest);
if (ystep == 64) {
assert(!upsampled_left);
const int width_bytes = width * sizeof(left[0]);
int y = height;
do {
const uint16_t* left_ptr = left + 1;
memcpy(dst, left_ptr, width_bytes);
memcpy(dst + stride, left_ptr + 1, width_bytes);
memcpy(dst + 2 * stride, left_ptr + 2, width_bytes);
memcpy(dst + 3 * stride, left_ptr + 3, width_bytes);
dst += 4 * stride;
left_ptr += 4;
y -= 4;
} while (y != 0);
return;
}
if (width == 4) {
if (upsampled_left) {
DirectionalZone3_4xH<true>(dst, stride, height, left, ystep);
} else {
DirectionalZone3_4xH<false>(dst, stride, height, left, ystep);
}
} else if (height == 4) {
if (upsampled_left) {
DirectionalZone3_Wx4<true>(dst, stride, width, left, ystep);
} else {
DirectionalZone3_Wx4<false>(dst, stride, width, left, ystep);
}
} else {
if (upsampled_left) {
// |upsampled_left| can only be true if |width| + |height| <= 16,
// therefore this is 8x8.
DirectionalZone3_8x8<true>(dst, stride, left, ystep);
} else {
DirectionalZone3_WxH<false>(dst, stride, width, height, left, ystep);
}
}
}
void Init10bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(kBitdepth10);
assert(dsp != nullptr);
dsp->directional_intra_predictor_zone1 = DirectionalIntraPredictorZone1_NEON;
dsp->directional_intra_predictor_zone3 = DirectionalIntraPredictorZone3_NEON;
}
} // namespace
} // namespace high_bitdepth
#endif // LIBGAV1_MAX_BITDEPTH >= 10
void IntraPredDirectionalInit_NEON() {
low_bitdepth::Init8bpp();
#if LIBGAV1_MAX_BITDEPTH >= 10
high_bitdepth::Init10bpp();
#endif // LIBGAV1_MAX_BITDEPTH >= 10
}
} // namespace dsp
} // namespace libgav1
#else // !LIBGAV1_ENABLE_NEON
namespace libgav1 {
namespace dsp {
void IntraPredDirectionalInit_NEON() {}
} // namespace dsp
} // namespace libgav1
#endif // LIBGAV1_ENABLE_NEON
|