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
|
// 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.h"
#include "src/utils/cpu.h"
#if LIBGAV1_ENABLE_NEON
#include <arm_neon.h>
#include <cassert>
#include <cstddef>
#include <cstdint>
#include "src/dsp/arm/common_neon.h"
#include "src/dsp/constants.h"
#include "src/dsp/dsp.h"
#include "src/utils/constants.h"
namespace libgav1 {
namespace dsp {
namespace {
//------------------------------------------------------------------------------
// DcPredFuncs_NEON
using DcSumFunc = uint32x2_t (*)(const void* ref_0, const int ref_0_size_log2,
const bool use_ref_1, const void* ref_1,
const int ref_1_size_log2);
using DcStoreFunc = void (*)(void* dest, ptrdiff_t stride, const uint32x2_t dc);
// DC intra-predictors for square blocks.
template <int block_width_log2, int block_height_log2, DcSumFunc sumfn,
DcStoreFunc storefn>
struct DcPredFuncs_NEON {
DcPredFuncs_NEON() = delete;
static void DcTop(void* dest, ptrdiff_t stride, const void* top_row,
const void* left_column);
static void DcLeft(void* dest, ptrdiff_t stride, const void* top_row,
const void* left_column);
static void Dc(void* dest, ptrdiff_t stride, const void* top_row,
const void* left_column);
};
template <int block_width_log2, int block_height_log2, DcSumFunc sumfn,
DcStoreFunc storefn>
void DcPredFuncs_NEON<block_width_log2, block_height_log2, sumfn,
storefn>::DcTop(void* const dest, ptrdiff_t stride,
const void* const top_row,
const void* /*left_column*/) {
const uint32x2_t sum = sumfn(top_row, block_width_log2, false, nullptr, 0);
const uint32x2_t dc = vrshr_n_u32(sum, block_width_log2);
storefn(dest, stride, dc);
}
template <int block_width_log2, int block_height_log2, DcSumFunc sumfn,
DcStoreFunc storefn>
void DcPredFuncs_NEON<block_width_log2, block_height_log2, sumfn,
storefn>::DcLeft(void* const dest, ptrdiff_t stride,
const void* /*top_row*/,
const void* const left_column) {
const uint32x2_t sum =
sumfn(left_column, block_height_log2, false, nullptr, 0);
const uint32x2_t dc = vrshr_n_u32(sum, block_height_log2);
storefn(dest, stride, dc);
}
template <int block_width_log2, int block_height_log2, DcSumFunc sumfn,
DcStoreFunc storefn>
void DcPredFuncs_NEON<block_width_log2, block_height_log2, sumfn, storefn>::Dc(
void* const dest, ptrdiff_t stride, const void* const top_row,
const void* const left_column) {
const uint32x2_t sum =
sumfn(top_row, block_width_log2, true, left_column, block_height_log2);
if (block_width_log2 == block_height_log2) {
const uint32x2_t dc = vrshr_n_u32(sum, block_width_log2 + 1);
storefn(dest, stride, dc);
} else {
// TODO(johannkoenig): Compare this to mul/shift in vectors.
const int divisor = (1 << block_width_log2) + (1 << block_height_log2);
uint32_t dc = vget_lane_u32(sum, 0);
dc += divisor >> 1;
dc /= divisor;
storefn(dest, stride, vdup_n_u32(dc));
}
}
// Sum all the elements in the vector into the low 32 bits.
inline uint32x2_t Sum(const uint16x4_t val) {
const uint32x2_t sum = vpaddl_u16(val);
return vpadd_u32(sum, sum);
}
// Sum all the elements in the vector into the low 32 bits.
inline uint32x2_t Sum(const uint16x8_t val) {
const uint32x4_t sum_0 = vpaddlq_u16(val);
const uint64x2_t sum_1 = vpaddlq_u32(sum_0);
return vadd_u32(vget_low_u32(vreinterpretq_u32_u64(sum_1)),
vget_high_u32(vreinterpretq_u32_u64(sum_1)));
}
} // namespace
//------------------------------------------------------------------------------
namespace low_bitdepth {
namespace {
// Add and expand the elements in the |val_[01]| to uint16_t but do not sum the
// entire vector.
inline uint16x8_t Add(const uint8x16_t val_0, const uint8x16_t val_1) {
const uint16x8_t sum_0 = vpaddlq_u8(val_0);
const uint16x8_t sum_1 = vpaddlq_u8(val_1);
return vaddq_u16(sum_0, sum_1);
}
// Add and expand the elements in the |val_[0123]| to uint16_t but do not sum
// the entire vector.
inline uint16x8_t Add(const uint8x16_t val_0, const uint8x16_t val_1,
const uint8x16_t val_2, const uint8x16_t val_3) {
const uint16x8_t sum_0 = Add(val_0, val_1);
const uint16x8_t sum_1 = Add(val_2, val_3);
return vaddq_u16(sum_0, sum_1);
}
// Load and combine 32 uint8_t values.
inline uint16x8_t LoadAndAdd32(const uint8_t* buf) {
const uint8x16_t val_0 = vld1q_u8(buf);
const uint8x16_t val_1 = vld1q_u8(buf + 16);
return Add(val_0, val_1);
}
// Load and combine 64 uint8_t values.
inline uint16x8_t LoadAndAdd64(const uint8_t* buf) {
const uint8x16_t val_0 = vld1q_u8(buf);
const uint8x16_t val_1 = vld1q_u8(buf + 16);
const uint8x16_t val_2 = vld1q_u8(buf + 32);
const uint8x16_t val_3 = vld1q_u8(buf + 48);
return Add(val_0, val_1, val_2, val_3);
}
// |ref_[01]| each point to 1 << |ref[01]_size_log2| packed uint8_t values.
// If |use_ref_1| is false then only sum |ref_0|.
// For |ref[01]_size_log2| == 4 this relies on |ref_[01]| being aligned to
// uint32_t.
inline uint32x2_t DcSum_NEON(const void* ref_0, const int ref_0_size_log2,
const bool use_ref_1, const void* ref_1,
const int ref_1_size_log2) {
const auto* const ref_0_u8 = static_cast<const uint8_t*>(ref_0);
const auto* const ref_1_u8 = static_cast<const uint8_t*>(ref_1);
if (ref_0_size_log2 == 2) {
uint8x8_t val = Load4(ref_0_u8);
if (use_ref_1) {
if (ref_1_size_log2 == 2) { // 4x4
val = Load4<1>(ref_1_u8, val);
return Sum(vpaddl_u8(val));
} else if (ref_1_size_log2 == 3) { // 4x8
const uint8x8_t val_1 = vld1_u8(ref_1_u8);
const uint16x4_t sum_0 = vpaddl_u8(val);
const uint16x4_t sum_1 = vpaddl_u8(val_1);
return Sum(vadd_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 4) { // 4x16
const uint8x16_t val_1 = vld1q_u8(ref_1_u8);
return Sum(vaddw_u8(vpaddlq_u8(val_1), val));
}
}
// 4x1
const uint16x4_t sum = vpaddl_u8(val);
return vpaddl_u16(sum);
} else if (ref_0_size_log2 == 3) {
const uint8x8_t val_0 = vld1_u8(ref_0_u8);
if (use_ref_1) {
if (ref_1_size_log2 == 2) { // 8x4
const uint8x8_t val_1 = Load4(ref_1_u8);
const uint16x4_t sum_0 = vpaddl_u8(val_0);
const uint16x4_t sum_1 = vpaddl_u8(val_1);
return Sum(vadd_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 3) { // 8x8
const uint8x8_t val_1 = vld1_u8(ref_1_u8);
const uint16x4_t sum_0 = vpaddl_u8(val_0);
const uint16x4_t sum_1 = vpaddl_u8(val_1);
return Sum(vadd_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 4) { // 8x16
const uint8x16_t val_1 = vld1q_u8(ref_1_u8);
return Sum(vaddw_u8(vpaddlq_u8(val_1), val_0));
} else if (ref_1_size_log2 == 5) { // 8x32
return Sum(vaddw_u8(LoadAndAdd32(ref_1_u8), val_0));
}
}
// 8x1
return Sum(vpaddl_u8(val_0));
} else if (ref_0_size_log2 == 4) {
const uint8x16_t val_0 = vld1q_u8(ref_0_u8);
if (use_ref_1) {
if (ref_1_size_log2 == 2) { // 16x4
const uint8x8_t val_1 = Load4(ref_1_u8);
return Sum(vaddw_u8(vpaddlq_u8(val_0), val_1));
} else if (ref_1_size_log2 == 3) { // 16x8
const uint8x8_t val_1 = vld1_u8(ref_1_u8);
return Sum(vaddw_u8(vpaddlq_u8(val_0), val_1));
} else if (ref_1_size_log2 == 4) { // 16x16
const uint8x16_t val_1 = vld1q_u8(ref_1_u8);
return Sum(Add(val_0, val_1));
} else if (ref_1_size_log2 == 5) { // 16x32
const uint16x8_t sum_0 = vpaddlq_u8(val_0);
const uint16x8_t sum_1 = LoadAndAdd32(ref_1_u8);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 6) { // 16x64
const uint16x8_t sum_0 = vpaddlq_u8(val_0);
const uint16x8_t sum_1 = LoadAndAdd64(ref_1_u8);
return Sum(vaddq_u16(sum_0, sum_1));
}
}
// 16x1
return Sum(vpaddlq_u8(val_0));
} else if (ref_0_size_log2 == 5) {
const uint16x8_t sum_0 = LoadAndAdd32(ref_0_u8);
if (use_ref_1) {
if (ref_1_size_log2 == 3) { // 32x8
const uint8x8_t val_1 = vld1_u8(ref_1_u8);
return Sum(vaddw_u8(sum_0, val_1));
} else if (ref_1_size_log2 == 4) { // 32x16
const uint8x16_t val_1 = vld1q_u8(ref_1_u8);
const uint16x8_t sum_1 = vpaddlq_u8(val_1);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 5) { // 32x32
const uint16x8_t sum_1 = LoadAndAdd32(ref_1_u8);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 6) { // 32x64
const uint16x8_t sum_1 = LoadAndAdd64(ref_1_u8);
return Sum(vaddq_u16(sum_0, sum_1));
}
}
// 32x1
return Sum(sum_0);
}
assert(ref_0_size_log2 == 6);
const uint16x8_t sum_0 = LoadAndAdd64(ref_0_u8);
if (use_ref_1) {
if (ref_1_size_log2 == 4) { // 64x16
const uint8x16_t val_1 = vld1q_u8(ref_1_u8);
const uint16x8_t sum_1 = vpaddlq_u8(val_1);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 5) { // 64x32
const uint16x8_t sum_1 = LoadAndAdd32(ref_1_u8);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 6) { // 64x64
const uint16x8_t sum_1 = LoadAndAdd64(ref_1_u8);
return Sum(vaddq_u16(sum_0, sum_1));
}
}
// 64x1
return Sum(sum_0);
}
template <int width, int height>
inline void DcStore_NEON(void* const dest, ptrdiff_t stride,
const uint32x2_t dc) {
const uint8x16_t dc_dup = vdupq_lane_u8(vreinterpret_u8_u32(dc), 0);
auto* dst = static_cast<uint8_t*>(dest);
if (width == 4) {
int i = height - 1;
do {
StoreLo4(dst, vget_low_u8(dc_dup));
dst += stride;
} while (--i != 0);
StoreLo4(dst, vget_low_u8(dc_dup));
} else if (width == 8) {
int i = height - 1;
do {
vst1_u8(dst, vget_low_u8(dc_dup));
dst += stride;
} while (--i != 0);
vst1_u8(dst, vget_low_u8(dc_dup));
} else if (width == 16) {
int i = height - 1;
do {
vst1q_u8(dst, dc_dup);
dst += stride;
} while (--i != 0);
vst1q_u8(dst, dc_dup);
} else if (width == 32) {
int i = height - 1;
do {
vst1q_u8(dst, dc_dup);
vst1q_u8(dst + 16, dc_dup);
dst += stride;
} while (--i != 0);
vst1q_u8(dst, dc_dup);
vst1q_u8(dst + 16, dc_dup);
} else {
assert(width == 64);
int i = height - 1;
do {
vst1q_u8(dst, dc_dup);
vst1q_u8(dst + 16, dc_dup);
vst1q_u8(dst + 32, dc_dup);
vst1q_u8(dst + 48, dc_dup);
dst += stride;
} while (--i != 0);
vst1q_u8(dst, dc_dup);
vst1q_u8(dst + 16, dc_dup);
vst1q_u8(dst + 32, dc_dup);
vst1q_u8(dst + 48, dc_dup);
}
}
template <int width, int height>
inline void Paeth4Or8xN_NEON(void* const dest, ptrdiff_t stride,
const void* const top_row,
const void* const left_column) {
auto* dest_u8 = static_cast<uint8_t*>(dest);
const auto* const top_row_u8 = static_cast<const uint8_t*>(top_row);
const auto* const left_col_u8 = static_cast<const uint8_t*>(left_column);
const uint8x8_t top_left = vdup_n_u8(top_row_u8[-1]);
const uint16x8_t top_left_x2 = vdupq_n_u16(top_row_u8[-1] + top_row_u8[-1]);
uint8x8_t top;
if (width == 4) {
top = Load4(top_row_u8);
} else { // width == 8
top = vld1_u8(top_row_u8);
}
for (int y = 0; y < height; ++y) {
const uint8x8_t left = vdup_n_u8(left_col_u8[y]);
const uint8x8_t left_dist = vabd_u8(top, top_left);
const uint8x8_t top_dist = vabd_u8(left, top_left);
const uint16x8_t top_left_dist =
vabdq_u16(vaddl_u8(top, left), top_left_x2);
const uint8x8_t left_le_top = vcle_u8(left_dist, top_dist);
const uint8x8_t left_le_top_left =
vmovn_u16(vcleq_u16(vmovl_u8(left_dist), top_left_dist));
const uint8x8_t top_le_top_left =
vmovn_u16(vcleq_u16(vmovl_u8(top_dist), top_left_dist));
// if (left_dist <= top_dist && left_dist <= top_left_dist)
const uint8x8_t left_mask = vand_u8(left_le_top, left_le_top_left);
// dest[x] = left_column[y];
// Fill all the unused spaces with 'top'. They will be overwritten when
// the positions for top_left are known.
uint8x8_t result = vbsl_u8(left_mask, left, top);
// else if (top_dist <= top_left_dist)
// dest[x] = top_row[x];
// Add these values to the mask. They were already set.
const uint8x8_t left_or_top_mask = vorr_u8(left_mask, top_le_top_left);
// else
// dest[x] = top_left;
result = vbsl_u8(left_or_top_mask, result, top_left);
if (width == 4) {
StoreLo4(dest_u8, result);
} else { // width == 8
vst1_u8(dest_u8, result);
}
dest_u8 += stride;
}
}
// Calculate X distance <= TopLeft distance and pack the resulting mask into
// uint8x8_t.
inline uint8x16_t XLeTopLeft(const uint8x16_t x_dist,
const uint16x8_t top_left_dist_low,
const uint16x8_t top_left_dist_high) {
// TODO(johannkoenig): cle() should work with vmovn(top_left_dist) instead of
// using movl(x_dist).
const uint8x8_t x_le_top_left_low =
vmovn_u16(vcleq_u16(vmovl_u8(vget_low_u8(x_dist)), top_left_dist_low));
const uint8x8_t x_le_top_left_high =
vmovn_u16(vcleq_u16(vmovl_u8(vget_high_u8(x_dist)), top_left_dist_high));
return vcombine_u8(x_le_top_left_low, x_le_top_left_high);
}
// Select the closest values and collect them.
inline uint8x16_t SelectPaeth(const uint8x16_t top, const uint8x16_t left,
const uint8x16_t top_left,
const uint8x16_t left_le_top,
const uint8x16_t left_le_top_left,
const uint8x16_t top_le_top_left) {
// if (left_dist <= top_dist && left_dist <= top_left_dist)
const uint8x16_t left_mask = vandq_u8(left_le_top, left_le_top_left);
// dest[x] = left_column[y];
// Fill all the unused spaces with 'top'. They will be overwritten when
// the positions for top_left are known.
uint8x16_t result = vbslq_u8(left_mask, left, top);
// else if (top_dist <= top_left_dist)
// dest[x] = top_row[x];
// Add these values to the mask. They were already set.
const uint8x16_t left_or_top_mask = vorrq_u8(left_mask, top_le_top_left);
// else
// dest[x] = top_left;
return vbslq_u8(left_or_top_mask, result, top_left);
}
// Generate numbered and high/low versions of top_left_dist.
#define TOP_LEFT_DIST(num) \
const uint16x8_t top_left_##num##_dist_low = vabdq_u16( \
vaddl_u8(vget_low_u8(top[num]), vget_low_u8(left)), top_left_x2); \
const uint16x8_t top_left_##num##_dist_high = vabdq_u16( \
vaddl_u8(vget_high_u8(top[num]), vget_low_u8(left)), top_left_x2)
// Generate numbered versions of XLeTopLeft with x = left.
#define LEFT_LE_TOP_LEFT(num) \
const uint8x16_t left_le_top_left_##num = \
XLeTopLeft(left_##num##_dist, top_left_##num##_dist_low, \
top_left_##num##_dist_high)
// Generate numbered versions of XLeTopLeft with x = top.
#define TOP_LE_TOP_LEFT(num) \
const uint8x16_t top_le_top_left_##num = XLeTopLeft( \
top_dist, top_left_##num##_dist_low, top_left_##num##_dist_high)
template <int width, int height>
inline void Paeth16PlusxN_NEON(void* const dest, ptrdiff_t stride,
const void* const top_row,
const void* const left_column) {
auto* dest_u8 = static_cast<uint8_t*>(dest);
const auto* const top_row_u8 = static_cast<const uint8_t*>(top_row);
const auto* const left_col_u8 = static_cast<const uint8_t*>(left_column);
const uint8x16_t top_left = vdupq_n_u8(top_row_u8[-1]);
const uint16x8_t top_left_x2 = vdupq_n_u16(top_row_u8[-1] + top_row_u8[-1]);
uint8x16_t top[4];
top[0] = vld1q_u8(top_row_u8);
if (width > 16) {
top[1] = vld1q_u8(top_row_u8 + 16);
if (width == 64) {
top[2] = vld1q_u8(top_row_u8 + 32);
top[3] = vld1q_u8(top_row_u8 + 48);
}
}
for (int y = 0; y < height; ++y) {
const uint8x16_t left = vdupq_n_u8(left_col_u8[y]);
const uint8x16_t top_dist = vabdq_u8(left, top_left);
const uint8x16_t left_0_dist = vabdq_u8(top[0], top_left);
TOP_LEFT_DIST(0);
const uint8x16_t left_0_le_top = vcleq_u8(left_0_dist, top_dist);
LEFT_LE_TOP_LEFT(0);
TOP_LE_TOP_LEFT(0);
const uint8x16_t result_0 =
SelectPaeth(top[0], left, top_left, left_0_le_top, left_le_top_left_0,
top_le_top_left_0);
vst1q_u8(dest_u8, result_0);
if (width > 16) {
const uint8x16_t left_1_dist = vabdq_u8(top[1], top_left);
TOP_LEFT_DIST(1);
const uint8x16_t left_1_le_top = vcleq_u8(left_1_dist, top_dist);
LEFT_LE_TOP_LEFT(1);
TOP_LE_TOP_LEFT(1);
const uint8x16_t result_1 =
SelectPaeth(top[1], left, top_left, left_1_le_top, left_le_top_left_1,
top_le_top_left_1);
vst1q_u8(dest_u8 + 16, result_1);
if (width == 64) {
const uint8x16_t left_2_dist = vabdq_u8(top[2], top_left);
TOP_LEFT_DIST(2);
const uint8x16_t left_2_le_top = vcleq_u8(left_2_dist, top_dist);
LEFT_LE_TOP_LEFT(2);
TOP_LE_TOP_LEFT(2);
const uint8x16_t result_2 =
SelectPaeth(top[2], left, top_left, left_2_le_top,
left_le_top_left_2, top_le_top_left_2);
vst1q_u8(dest_u8 + 32, result_2);
const uint8x16_t left_3_dist = vabdq_u8(top[3], top_left);
TOP_LEFT_DIST(3);
const uint8x16_t left_3_le_top = vcleq_u8(left_3_dist, top_dist);
LEFT_LE_TOP_LEFT(3);
TOP_LE_TOP_LEFT(3);
const uint8x16_t result_3 =
SelectPaeth(top[3], left, top_left, left_3_le_top,
left_le_top_left_3, top_le_top_left_3);
vst1q_u8(dest_u8 + 48, result_3);
}
}
dest_u8 += stride;
}
}
struct DcDefs {
DcDefs() = delete;
using _4x4 = DcPredFuncs_NEON<2, 2, DcSum_NEON, DcStore_NEON<4, 4>>;
using _4x8 = DcPredFuncs_NEON<2, 3, DcSum_NEON, DcStore_NEON<4, 8>>;
using _4x16 = DcPredFuncs_NEON<2, 4, DcSum_NEON, DcStore_NEON<4, 16>>;
using _8x4 = DcPredFuncs_NEON<3, 2, DcSum_NEON, DcStore_NEON<8, 4>>;
using _8x8 = DcPredFuncs_NEON<3, 3, DcSum_NEON, DcStore_NEON<8, 8>>;
using _8x16 = DcPredFuncs_NEON<3, 4, DcSum_NEON, DcStore_NEON<8, 16>>;
using _8x32 = DcPredFuncs_NEON<3, 5, DcSum_NEON, DcStore_NEON<8, 32>>;
using _16x4 = DcPredFuncs_NEON<4, 2, DcSum_NEON, DcStore_NEON<16, 4>>;
using _16x8 = DcPredFuncs_NEON<4, 3, DcSum_NEON, DcStore_NEON<16, 8>>;
using _16x16 = DcPredFuncs_NEON<4, 4, DcSum_NEON, DcStore_NEON<16, 16>>;
using _16x32 = DcPredFuncs_NEON<4, 5, DcSum_NEON, DcStore_NEON<16, 32>>;
using _16x64 = DcPredFuncs_NEON<4, 6, DcSum_NEON, DcStore_NEON<16, 64>>;
using _32x8 = DcPredFuncs_NEON<5, 3, DcSum_NEON, DcStore_NEON<32, 8>>;
using _32x16 = DcPredFuncs_NEON<5, 4, DcSum_NEON, DcStore_NEON<32, 16>>;
using _32x32 = DcPredFuncs_NEON<5, 5, DcSum_NEON, DcStore_NEON<32, 32>>;
using _32x64 = DcPredFuncs_NEON<5, 6, DcSum_NEON, DcStore_NEON<32, 64>>;
using _64x16 = DcPredFuncs_NEON<6, 4, DcSum_NEON, DcStore_NEON<64, 16>>;
using _64x32 = DcPredFuncs_NEON<6, 5, DcSum_NEON, DcStore_NEON<64, 32>>;
using _64x64 = DcPredFuncs_NEON<6, 6, DcSum_NEON, DcStore_NEON<64, 64>>;
};
void Init8bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(kBitdepth8);
assert(dsp != nullptr);
// 4x4
dsp->intra_predictors[kTransformSize4x4][kIntraPredictorDcTop] =
DcDefs::_4x4::DcTop;
dsp->intra_predictors[kTransformSize4x4][kIntraPredictorDcLeft] =
DcDefs::_4x4::DcLeft;
dsp->intra_predictors[kTransformSize4x4][kIntraPredictorDc] =
DcDefs::_4x4::Dc;
dsp->intra_predictors[kTransformSize4x4][kIntraPredictorPaeth] =
Paeth4Or8xN_NEON<4, 4>;
// 4x8
dsp->intra_predictors[kTransformSize4x8][kIntraPredictorDcTop] =
DcDefs::_4x8::DcTop;
dsp->intra_predictors[kTransformSize4x8][kIntraPredictorDcLeft] =
DcDefs::_4x8::DcLeft;
dsp->intra_predictors[kTransformSize4x8][kIntraPredictorDc] =
DcDefs::_4x8::Dc;
dsp->intra_predictors[kTransformSize4x8][kIntraPredictorPaeth] =
Paeth4Or8xN_NEON<4, 8>;
// 4x16
dsp->intra_predictors[kTransformSize4x16][kIntraPredictorDcTop] =
DcDefs::_4x16::DcTop;
dsp->intra_predictors[kTransformSize4x16][kIntraPredictorDcLeft] =
DcDefs::_4x16::DcLeft;
dsp->intra_predictors[kTransformSize4x16][kIntraPredictorDc] =
DcDefs::_4x16::Dc;
dsp->intra_predictors[kTransformSize4x16][kIntraPredictorPaeth] =
Paeth4Or8xN_NEON<4, 16>;
// 8x4
dsp->intra_predictors[kTransformSize8x4][kIntraPredictorDcTop] =
DcDefs::_8x4::DcTop;
dsp->intra_predictors[kTransformSize8x4][kIntraPredictorDcLeft] =
DcDefs::_8x4::DcLeft;
dsp->intra_predictors[kTransformSize8x4][kIntraPredictorDc] =
DcDefs::_8x4::Dc;
dsp->intra_predictors[kTransformSize8x4][kIntraPredictorPaeth] =
Paeth4Or8xN_NEON<8, 4>;
// 8x8
dsp->intra_predictors[kTransformSize8x8][kIntraPredictorDcTop] =
DcDefs::_8x8::DcTop;
dsp->intra_predictors[kTransformSize8x8][kIntraPredictorDcLeft] =
DcDefs::_8x8::DcLeft;
dsp->intra_predictors[kTransformSize8x8][kIntraPredictorDc] =
DcDefs::_8x8::Dc;
dsp->intra_predictors[kTransformSize8x8][kIntraPredictorPaeth] =
Paeth4Or8xN_NEON<8, 8>;
// 8x16
dsp->intra_predictors[kTransformSize8x16][kIntraPredictorDcTop] =
DcDefs::_8x16::DcTop;
dsp->intra_predictors[kTransformSize8x16][kIntraPredictorDcLeft] =
DcDefs::_8x16::DcLeft;
dsp->intra_predictors[kTransformSize8x16][kIntraPredictorDc] =
DcDefs::_8x16::Dc;
dsp->intra_predictors[kTransformSize8x16][kIntraPredictorPaeth] =
Paeth4Or8xN_NEON<8, 16>;
// 8x32
dsp->intra_predictors[kTransformSize8x32][kIntraPredictorDcTop] =
DcDefs::_8x32::DcTop;
dsp->intra_predictors[kTransformSize8x32][kIntraPredictorDcLeft] =
DcDefs::_8x32::DcLeft;
dsp->intra_predictors[kTransformSize8x32][kIntraPredictorDc] =
DcDefs::_8x32::Dc;
dsp->intra_predictors[kTransformSize8x32][kIntraPredictorPaeth] =
Paeth4Or8xN_NEON<8, 32>;
// 16x4
dsp->intra_predictors[kTransformSize16x4][kIntraPredictorDcTop] =
DcDefs::_16x4::DcTop;
dsp->intra_predictors[kTransformSize16x4][kIntraPredictorDcLeft] =
DcDefs::_16x4::DcLeft;
dsp->intra_predictors[kTransformSize16x4][kIntraPredictorDc] =
DcDefs::_16x4::Dc;
dsp->intra_predictors[kTransformSize16x4][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<16, 4>;
// 16x8
dsp->intra_predictors[kTransformSize16x8][kIntraPredictorDcTop] =
DcDefs::_16x8::DcTop;
dsp->intra_predictors[kTransformSize16x8][kIntraPredictorDcLeft] =
DcDefs::_16x8::DcLeft;
dsp->intra_predictors[kTransformSize16x8][kIntraPredictorDc] =
DcDefs::_16x8::Dc;
dsp->intra_predictors[kTransformSize16x8][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<16, 8>;
// 16x16
dsp->intra_predictors[kTransformSize16x16][kIntraPredictorDcTop] =
DcDefs::_16x16::DcTop;
dsp->intra_predictors[kTransformSize16x16][kIntraPredictorDcLeft] =
DcDefs::_16x16::DcLeft;
dsp->intra_predictors[kTransformSize16x16][kIntraPredictorDc] =
DcDefs::_16x16::Dc;
dsp->intra_predictors[kTransformSize16x16][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<16, 16>;
// 16x32
dsp->intra_predictors[kTransformSize16x32][kIntraPredictorDcTop] =
DcDefs::_16x32::DcTop;
dsp->intra_predictors[kTransformSize16x32][kIntraPredictorDcLeft] =
DcDefs::_16x32::DcLeft;
dsp->intra_predictors[kTransformSize16x32][kIntraPredictorDc] =
DcDefs::_16x32::Dc;
dsp->intra_predictors[kTransformSize16x32][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<16, 32>;
// 16x64
dsp->intra_predictors[kTransformSize16x64][kIntraPredictorDcTop] =
DcDefs::_16x64::DcTop;
dsp->intra_predictors[kTransformSize16x64][kIntraPredictorDcLeft] =
DcDefs::_16x64::DcLeft;
dsp->intra_predictors[kTransformSize16x64][kIntraPredictorDc] =
DcDefs::_16x64::Dc;
dsp->intra_predictors[kTransformSize16x64][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<16, 64>;
// 32x8
dsp->intra_predictors[kTransformSize32x8][kIntraPredictorDcTop] =
DcDefs::_32x8::DcTop;
dsp->intra_predictors[kTransformSize32x8][kIntraPredictorDcLeft] =
DcDefs::_32x8::DcLeft;
dsp->intra_predictors[kTransformSize32x8][kIntraPredictorDc] =
DcDefs::_32x8::Dc;
dsp->intra_predictors[kTransformSize32x8][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<32, 8>;
// 32x16
dsp->intra_predictors[kTransformSize32x16][kIntraPredictorDcTop] =
DcDefs::_32x16::DcTop;
dsp->intra_predictors[kTransformSize32x16][kIntraPredictorDcLeft] =
DcDefs::_32x16::DcLeft;
dsp->intra_predictors[kTransformSize32x16][kIntraPredictorDc] =
DcDefs::_32x16::Dc;
dsp->intra_predictors[kTransformSize32x16][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<32, 16>;
// 32x32
dsp->intra_predictors[kTransformSize32x32][kIntraPredictorDcTop] =
DcDefs::_32x32::DcTop;
dsp->intra_predictors[kTransformSize32x32][kIntraPredictorDcLeft] =
DcDefs::_32x32::DcLeft;
dsp->intra_predictors[kTransformSize32x32][kIntraPredictorDc] =
DcDefs::_32x32::Dc;
dsp->intra_predictors[kTransformSize32x32][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<32, 32>;
// 32x64
dsp->intra_predictors[kTransformSize32x64][kIntraPredictorDcTop] =
DcDefs::_32x64::DcTop;
dsp->intra_predictors[kTransformSize32x64][kIntraPredictorDcLeft] =
DcDefs::_32x64::DcLeft;
dsp->intra_predictors[kTransformSize32x64][kIntraPredictorDc] =
DcDefs::_32x64::Dc;
dsp->intra_predictors[kTransformSize32x64][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<32, 64>;
// 64x16
dsp->intra_predictors[kTransformSize64x16][kIntraPredictorDcTop] =
DcDefs::_64x16::DcTop;
dsp->intra_predictors[kTransformSize64x16][kIntraPredictorDcLeft] =
DcDefs::_64x16::DcLeft;
dsp->intra_predictors[kTransformSize64x16][kIntraPredictorDc] =
DcDefs::_64x16::Dc;
dsp->intra_predictors[kTransformSize64x16][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<64, 16>;
// 64x32
dsp->intra_predictors[kTransformSize64x32][kIntraPredictorDcTop] =
DcDefs::_64x32::DcTop;
dsp->intra_predictors[kTransformSize64x32][kIntraPredictorDcLeft] =
DcDefs::_64x32::DcLeft;
dsp->intra_predictors[kTransformSize64x32][kIntraPredictorDc] =
DcDefs::_64x32::Dc;
dsp->intra_predictors[kTransformSize64x32][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<64, 32>;
// 64x64
dsp->intra_predictors[kTransformSize64x64][kIntraPredictorDcTop] =
DcDefs::_64x64::DcTop;
dsp->intra_predictors[kTransformSize64x64][kIntraPredictorDcLeft] =
DcDefs::_64x64::DcLeft;
dsp->intra_predictors[kTransformSize64x64][kIntraPredictorDc] =
DcDefs::_64x64::Dc;
dsp->intra_predictors[kTransformSize64x64][kIntraPredictorPaeth] =
Paeth16PlusxN_NEON<64, 64>;
}
} // namespace
} // namespace low_bitdepth
//------------------------------------------------------------------------------
#if LIBGAV1_MAX_BITDEPTH >= 10
namespace high_bitdepth {
namespace {
// Add the elements in the given vectors together but do not sum the entire
// vector.
inline uint16x8_t Add(const uint16x8_t val_0, const uint16x8_t val_1,
const uint16x8_t val_2, const uint16x8_t val_3) {
const uint16x8_t sum_0 = vaddq_u16(val_0, val_1);
const uint16x8_t sum_1 = vaddq_u16(val_2, val_3);
return vaddq_u16(sum_0, sum_1);
}
// Load and combine 16 uint16_t values.
inline uint16x8_t LoadAndAdd16(const uint16_t* buf) {
const uint16x8_t val_0 = vld1q_u16(buf);
const uint16x8_t val_1 = vld1q_u16(buf + 8);
return vaddq_u16(val_0, val_1);
}
// Load and combine 32 uint16_t values.
inline uint16x8_t LoadAndAdd32(const uint16_t* buf) {
const uint16x8_t val_0 = vld1q_u16(buf);
const uint16x8_t val_1 = vld1q_u16(buf + 8);
const uint16x8_t val_2 = vld1q_u16(buf + 16);
const uint16x8_t val_3 = vld1q_u16(buf + 24);
return Add(val_0, val_1, val_2, val_3);
}
// Load and combine 64 uint16_t values.
inline uint16x8_t LoadAndAdd64(const uint16_t* buf) {
const uint16x8_t val_0 = vld1q_u16(buf);
const uint16x8_t val_1 = vld1q_u16(buf + 8);
const uint16x8_t val_2 = vld1q_u16(buf + 16);
const uint16x8_t val_3 = vld1q_u16(buf + 24);
const uint16x8_t val_4 = vld1q_u16(buf + 32);
const uint16x8_t val_5 = vld1q_u16(buf + 40);
const uint16x8_t val_6 = vld1q_u16(buf + 48);
const uint16x8_t val_7 = vld1q_u16(buf + 56);
const uint16x8_t sum_0 = Add(val_0, val_1, val_2, val_3);
const uint16x8_t sum_1 = Add(val_4, val_5, val_6, val_7);
return vaddq_u16(sum_0, sum_1);
}
// |ref_[01]| each point to 1 << |ref[01]_size_log2| packed uint16_t values.
// If |use_ref_1| is false then only sum |ref_0|.
inline uint32x2_t DcSum_NEON(const void* ref_0, const int ref_0_size_log2,
const bool use_ref_1, const void* ref_1,
const int ref_1_size_log2) {
const auto* ref_0_u16 = static_cast<const uint16_t*>(ref_0);
const auto* ref_1_u16 = static_cast<const uint16_t*>(ref_1);
if (ref_0_size_log2 == 2) {
const uint16x4_t val_0 = vld1_u16(ref_0_u16);
if (use_ref_1) {
if (ref_1_size_log2 == 2) { // 4x4
const uint16x4_t val_1 = vld1_u16(ref_1_u16);
return Sum(vadd_u16(val_0, val_1));
} else if (ref_1_size_log2 == 3) { // 4x8
const uint16x8_t val_1 = vld1q_u16(ref_1_u16);
const uint16x8_t sum_0 = vcombine_u16(vdup_n_u16(0), val_0);
return Sum(vaddq_u16(sum_0, val_1));
} else if (ref_1_size_log2 == 4) { // 4x16
const uint16x8_t sum_0 = vcombine_u16(vdup_n_u16(0), val_0);
const uint16x8_t sum_1 = LoadAndAdd16(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
}
}
// 4x1
return Sum(val_0);
} else if (ref_0_size_log2 == 3) {
const uint16x8_t val_0 = vld1q_u16(ref_0_u16);
if (use_ref_1) {
if (ref_1_size_log2 == 2) { // 8x4
const uint16x4_t val_1 = vld1_u16(ref_1_u16);
const uint16x8_t sum_1 = vcombine_u16(vdup_n_u16(0), val_1);
return Sum(vaddq_u16(val_0, sum_1));
} else if (ref_1_size_log2 == 3) { // 8x8
const uint16x8_t val_1 = vld1q_u16(ref_1_u16);
return Sum(vaddq_u16(val_0, val_1));
} else if (ref_1_size_log2 == 4) { // 8x16
const uint16x8_t sum_1 = LoadAndAdd16(ref_1_u16);
return Sum(vaddq_u16(val_0, sum_1));
} else if (ref_1_size_log2 == 5) { // 8x32
const uint16x8_t sum_1 = LoadAndAdd32(ref_1_u16);
return Sum(vaddq_u16(val_0, sum_1));
}
}
// 8x1
return Sum(val_0);
} else if (ref_0_size_log2 == 4) {
const uint16x8_t sum_0 = LoadAndAdd16(ref_0_u16);
if (use_ref_1) {
if (ref_1_size_log2 == 2) { // 16x4
const uint16x4_t val_1 = vld1_u16(ref_1_u16);
const uint16x8_t sum_1 = vcombine_u16(vdup_n_u16(0), val_1);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 3) { // 16x8
const uint16x8_t val_1 = vld1q_u16(ref_1_u16);
return Sum(vaddq_u16(sum_0, val_1));
} else if (ref_1_size_log2 == 4) { // 16x16
const uint16x8_t sum_1 = LoadAndAdd16(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 5) { // 16x32
const uint16x8_t sum_1 = LoadAndAdd32(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 6) { // 16x64
const uint16x8_t sum_1 = LoadAndAdd64(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
}
}
// 16x1
return Sum(sum_0);
} else if (ref_0_size_log2 == 5) {
const uint16x8_t sum_0 = LoadAndAdd32(ref_0_u16);
if (use_ref_1) {
if (ref_1_size_log2 == 3) { // 32x8
const uint16x8_t val_1 = vld1q_u16(ref_1_u16);
return Sum(vaddq_u16(sum_0, val_1));
} else if (ref_1_size_log2 == 4) { // 32x16
const uint16x8_t sum_1 = LoadAndAdd16(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 5) { // 32x32
const uint16x8_t sum_1 = LoadAndAdd32(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 6) { // 32x64
const uint16x8_t sum_1 = LoadAndAdd64(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
}
}
// 32x1
return Sum(sum_0);
}
assert(ref_0_size_log2 == 6);
const uint16x8_t sum_0 = LoadAndAdd64(ref_0_u16);
if (use_ref_1) {
if (ref_1_size_log2 == 4) { // 64x16
const uint16x8_t sum_1 = LoadAndAdd16(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 5) { // 64x32
const uint16x8_t sum_1 = LoadAndAdd32(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
} else if (ref_1_size_log2 == 6) { // 64x64
const uint16x8_t sum_1 = LoadAndAdd64(ref_1_u16);
return Sum(vaddq_u16(sum_0, sum_1));
}
}
// 64x1
return Sum(sum_0);
}
template <int width, int height>
inline void DcStore_NEON(void* const dest, ptrdiff_t stride,
const uint32x2_t dc) {
auto* dest_u16 = static_cast<uint16_t*>(dest);
ptrdiff_t stride_u16 = stride >> 1;
const uint16x8_t dc_dup = vdupq_lane_u16(vreinterpret_u16_u32(dc), 0);
if (width == 4) {
int i = height - 1;
do {
vst1_u16(dest_u16, vget_low_u16(dc_dup));
dest_u16 += stride_u16;
} while (--i != 0);
vst1_u16(dest_u16, vget_low_u16(dc_dup));
} else if (width == 8) {
int i = height - 1;
do {
vst1q_u16(dest_u16, dc_dup);
dest_u16 += stride_u16;
} while (--i != 0);
vst1q_u16(dest_u16, dc_dup);
} else if (width == 16) {
int i = height - 1;
do {
vst1q_u16(dest_u16, dc_dup);
vst1q_u16(dest_u16 + 8, dc_dup);
dest_u16 += stride_u16;
} while (--i != 0);
vst1q_u16(dest_u16, dc_dup);
vst1q_u16(dest_u16 + 8, dc_dup);
} else if (width == 32) {
int i = height - 1;
do {
vst1q_u16(dest_u16, dc_dup);
vst1q_u16(dest_u16 + 8, dc_dup);
vst1q_u16(dest_u16 + 16, dc_dup);
vst1q_u16(dest_u16 + 24, dc_dup);
dest_u16 += stride_u16;
} while (--i != 0);
vst1q_u16(dest_u16, dc_dup);
vst1q_u16(dest_u16 + 8, dc_dup);
vst1q_u16(dest_u16 + 16, dc_dup);
vst1q_u16(dest_u16 + 24, dc_dup);
} else {
assert(width == 64);
int i = height - 1;
do {
vst1q_u16(dest_u16, dc_dup);
vst1q_u16(dest_u16 + 8, dc_dup);
vst1q_u16(dest_u16 + 16, dc_dup);
vst1q_u16(dest_u16 + 24, dc_dup);
vst1q_u16(dest_u16 + 32, dc_dup);
vst1q_u16(dest_u16 + 40, dc_dup);
vst1q_u16(dest_u16 + 48, dc_dup);
vst1q_u16(dest_u16 + 56, dc_dup);
dest_u16 += stride_u16;
} while (--i != 0);
vst1q_u16(dest_u16, dc_dup);
vst1q_u16(dest_u16 + 8, dc_dup);
vst1q_u16(dest_u16 + 16, dc_dup);
vst1q_u16(dest_u16 + 24, dc_dup);
vst1q_u16(dest_u16 + 32, dc_dup);
vst1q_u16(dest_u16 + 40, dc_dup);
vst1q_u16(dest_u16 + 48, dc_dup);
vst1q_u16(dest_u16 + 56, dc_dup);
}
}
struct DcDefs {
DcDefs() = delete;
using _4x4 = DcPredFuncs_NEON<2, 2, DcSum_NEON, DcStore_NEON<4, 4>>;
using _4x8 = DcPredFuncs_NEON<2, 3, DcSum_NEON, DcStore_NEON<4, 8>>;
using _4x16 = DcPredFuncs_NEON<2, 4, DcSum_NEON, DcStore_NEON<4, 16>>;
using _8x4 = DcPredFuncs_NEON<3, 2, DcSum_NEON, DcStore_NEON<8, 4>>;
using _8x8 = DcPredFuncs_NEON<3, 3, DcSum_NEON, DcStore_NEON<8, 8>>;
using _8x16 = DcPredFuncs_NEON<3, 4, DcSum_NEON, DcStore_NEON<8, 16>>;
using _8x32 = DcPredFuncs_NEON<3, 5, DcSum_NEON, DcStore_NEON<8, 32>>;
using _16x4 = DcPredFuncs_NEON<4, 2, DcSum_NEON, DcStore_NEON<16, 4>>;
using _16x8 = DcPredFuncs_NEON<4, 3, DcSum_NEON, DcStore_NEON<16, 8>>;
using _16x16 = DcPredFuncs_NEON<4, 4, DcSum_NEON, DcStore_NEON<16, 16>>;
using _16x32 = DcPredFuncs_NEON<4, 5, DcSum_NEON, DcStore_NEON<16, 32>>;
using _16x64 = DcPredFuncs_NEON<4, 6, DcSum_NEON, DcStore_NEON<16, 64>>;
using _32x8 = DcPredFuncs_NEON<5, 3, DcSum_NEON, DcStore_NEON<32, 8>>;
using _32x16 = DcPredFuncs_NEON<5, 4, DcSum_NEON, DcStore_NEON<32, 16>>;
using _32x32 = DcPredFuncs_NEON<5, 5, DcSum_NEON, DcStore_NEON<32, 32>>;
using _32x64 = DcPredFuncs_NEON<5, 6, DcSum_NEON, DcStore_NEON<32, 64>>;
using _64x16 = DcPredFuncs_NEON<6, 4, DcSum_NEON, DcStore_NEON<64, 16>>;
using _64x32 = DcPredFuncs_NEON<6, 5, DcSum_NEON, DcStore_NEON<64, 32>>;
using _64x64 = DcPredFuncs_NEON<6, 6, DcSum_NEON, DcStore_NEON<64, 64>>;
};
// IntraPredFuncs_NEON::Horizontal -- duplicate left column across all rows
template <int block_height>
void Horizontal4xH_NEON(void* const dest, ptrdiff_t stride,
const void* /*top_row*/,
const void* const left_column) {
const auto* const left = static_cast<const uint16_t*>(left_column);
auto* dst = static_cast<uint8_t*>(dest);
int y = 0;
do {
auto* dst16 = reinterpret_cast<uint16_t*>(dst);
const uint16x4_t row = vld1_dup_u16(left + y);
vst1_u16(dst16, row);
dst += stride;
} while (++y < block_height);
}
template <int block_height>
void Horizontal8xH_NEON(void* const dest, ptrdiff_t stride,
const void* /*top_row*/,
const void* const left_column) {
const auto* const left = static_cast<const uint16_t*>(left_column);
auto* dst = static_cast<uint8_t*>(dest);
int y = 0;
do {
auto* dst16 = reinterpret_cast<uint16_t*>(dst);
const uint16x8_t row = vld1q_dup_u16(left + y);
vst1q_u16(dst16, row);
dst += stride;
} while (++y < block_height);
}
template <int block_height>
void Horizontal16xH_NEON(void* const dest, ptrdiff_t stride,
const void* /*top_row*/,
const void* const left_column) {
const auto* const left = static_cast<const uint16_t*>(left_column);
auto* dst = static_cast<uint8_t*>(dest);
int y = 0;
do {
const uint16x8_t row0 = vld1q_dup_u16(left + y);
const uint16x8_t row1 = vld1q_dup_u16(left + y + 1);
auto* dst16 = reinterpret_cast<uint16_t*>(dst);
vst1q_u16(dst16, row0);
vst1q_u16(dst16 + 8, row0);
dst += stride;
dst16 = reinterpret_cast<uint16_t*>(dst);
vst1q_u16(dst16, row1);
vst1q_u16(dst16 + 8, row1);
dst += stride;
y += 2;
} while (y < block_height);
}
template <int block_height>
void Horizontal32xH_NEON(void* const dest, ptrdiff_t stride,
const void* /*top_row*/,
const void* const left_column) {
const auto* const left = static_cast<const uint16_t*>(left_column);
auto* dst = static_cast<uint8_t*>(dest);
int y = 0;
do {
const uint16x8_t row0 = vld1q_dup_u16(left + y);
const uint16x8_t row1 = vld1q_dup_u16(left + y + 1);
auto* dst16 = reinterpret_cast<uint16_t*>(dst);
vst1q_u16(dst16, row0);
vst1q_u16(dst16 + 8, row0);
vst1q_u16(dst16 + 16, row0);
vst1q_u16(dst16 + 24, row0);
dst += stride;
dst16 = reinterpret_cast<uint16_t*>(dst);
vst1q_u16(dst16, row1);
vst1q_u16(dst16 + 8, row1);
vst1q_u16(dst16 + 16, row1);
vst1q_u16(dst16 + 24, row1);
dst += stride;
y += 2;
} while (y < block_height);
}
// IntraPredFuncs_NEON::Vertical -- copy top row to all rows
template <int block_height>
void Vertical4xH_NEON(void* const dest, ptrdiff_t stride,
const void* const top_row,
const void* const /*left_column*/) {
const auto* const top = static_cast<const uint8_t*>(top_row);
auto* dst = static_cast<uint8_t*>(dest);
const uint8x8_t row = vld1_u8(top);
int y = block_height;
do {
vst1_u8(dst, row);
dst += stride;
} while (--y != 0);
}
template <int block_height>
void Vertical8xH_NEON(void* const dest, ptrdiff_t stride,
const void* const top_row,
const void* const /*left_column*/) {
const auto* const top = static_cast<const uint8_t*>(top_row);
auto* dst = static_cast<uint8_t*>(dest);
const uint8x16_t row = vld1q_u8(top);
int y = block_height;
do {
vst1q_u8(dst, row);
dst += stride;
} while (--y != 0);
}
template <int block_height>
void Vertical16xH_NEON(void* const dest, ptrdiff_t stride,
const void* const top_row,
const void* const /*left_column*/) {
const auto* const top = static_cast<const uint8_t*>(top_row);
auto* dst = static_cast<uint8_t*>(dest);
const uint8x16_t row0 = vld1q_u8(top);
const uint8x16_t row1 = vld1q_u8(top + 16);
int y = block_height;
do {
vst1q_u8(dst, row0);
vst1q_u8(dst + 16, row1);
dst += stride;
vst1q_u8(dst, row0);
vst1q_u8(dst + 16, row1);
dst += stride;
y -= 2;
} while (y != 0);
}
template <int block_height>
void Vertical32xH_NEON(void* const dest, ptrdiff_t stride,
const void* const top_row,
const void* const /*left_column*/) {
const auto* const top = static_cast<const uint8_t*>(top_row);
auto* dst = static_cast<uint8_t*>(dest);
const uint8x16_t row0 = vld1q_u8(top);
const uint8x16_t row1 = vld1q_u8(top + 16);
const uint8x16_t row2 = vld1q_u8(top + 32);
const uint8x16_t row3 = vld1q_u8(top + 48);
int y = block_height;
do {
vst1q_u8(dst, row0);
vst1q_u8(dst + 16, row1);
vst1q_u8(dst + 32, row2);
vst1q_u8(dst + 48, row3);
dst += stride;
vst1q_u8(dst, row0);
vst1q_u8(dst + 16, row1);
vst1q_u8(dst + 32, row2);
vst1q_u8(dst + 48, row3);
dst += stride;
y -= 2;
} while (y != 0);
}
template <int block_height>
void Vertical64xH_NEON(void* const dest, ptrdiff_t stride,
const void* const top_row,
const void* const /*left_column*/) {
const auto* const top = static_cast<const uint8_t*>(top_row);
auto* dst = static_cast<uint8_t*>(dest);
const uint8x16_t row0 = vld1q_u8(top);
const uint8x16_t row1 = vld1q_u8(top + 16);
const uint8x16_t row2 = vld1q_u8(top + 32);
const uint8x16_t row3 = vld1q_u8(top + 48);
const uint8x16_t row4 = vld1q_u8(top + 64);
const uint8x16_t row5 = vld1q_u8(top + 80);
const uint8x16_t row6 = vld1q_u8(top + 96);
const uint8x16_t row7 = vld1q_u8(top + 112);
int y = block_height;
do {
vst1q_u8(dst, row0);
vst1q_u8(dst + 16, row1);
vst1q_u8(dst + 32, row2);
vst1q_u8(dst + 48, row3);
vst1q_u8(dst + 64, row4);
vst1q_u8(dst + 80, row5);
vst1q_u8(dst + 96, row6);
vst1q_u8(dst + 112, row7);
dst += stride;
vst1q_u8(dst, row0);
vst1q_u8(dst + 16, row1);
vst1q_u8(dst + 32, row2);
vst1q_u8(dst + 48, row3);
vst1q_u8(dst + 64, row4);
vst1q_u8(dst + 80, row5);
vst1q_u8(dst + 96, row6);
vst1q_u8(dst + 112, row7);
dst += stride;
y -= 2;
} while (y != 0);
}
void Init10bpp() {
Dsp* const dsp = dsp_internal::GetWritableDspTable(kBitdepth10);
assert(dsp != nullptr);
dsp->intra_predictors[kTransformSize4x4][kIntraPredictorDcTop] =
DcDefs::_4x4::DcTop;
dsp->intra_predictors[kTransformSize4x4][kIntraPredictorDcLeft] =
DcDefs::_4x4::DcLeft;
dsp->intra_predictors[kTransformSize4x4][kIntraPredictorDc] =
DcDefs::_4x4::Dc;
dsp->intra_predictors[kTransformSize4x4][kIntraPredictorVertical] =
Vertical4xH_NEON<4>;
// 4x8
dsp->intra_predictors[kTransformSize4x8][kIntraPredictorDcTop] =
DcDefs::_4x8::DcTop;
dsp->intra_predictors[kTransformSize4x8][kIntraPredictorDcLeft] =
DcDefs::_4x8::DcLeft;
dsp->intra_predictors[kTransformSize4x8][kIntraPredictorDc] =
DcDefs::_4x8::Dc;
dsp->intra_predictors[kTransformSize4x8][kIntraPredictorHorizontal] =
Horizontal4xH_NEON<8>;
dsp->intra_predictors[kTransformSize4x8][kIntraPredictorVertical] =
Vertical4xH_NEON<8>;
// 4x16
dsp->intra_predictors[kTransformSize4x16][kIntraPredictorDcTop] =
DcDefs::_4x16::DcTop;
dsp->intra_predictors[kTransformSize4x16][kIntraPredictorDcLeft] =
DcDefs::_4x16::DcLeft;
dsp->intra_predictors[kTransformSize4x16][kIntraPredictorDc] =
DcDefs::_4x16::Dc;
dsp->intra_predictors[kTransformSize4x16][kIntraPredictorHorizontal] =
Horizontal4xH_NEON<16>;
dsp->intra_predictors[kTransformSize4x16][kIntraPredictorVertical] =
Vertical4xH_NEON<16>;
// 8x4
dsp->intra_predictors[kTransformSize8x4][kIntraPredictorDcTop] =
DcDefs::_8x4::DcTop;
dsp->intra_predictors[kTransformSize8x4][kIntraPredictorDcLeft] =
DcDefs::_8x4::DcLeft;
dsp->intra_predictors[kTransformSize8x4][kIntraPredictorDc] =
DcDefs::_8x4::Dc;
dsp->intra_predictors[kTransformSize8x4][kIntraPredictorVertical] =
Vertical8xH_NEON<4>;
// 8x8
dsp->intra_predictors[kTransformSize8x8][kIntraPredictorDcTop] =
DcDefs::_8x8::DcTop;
dsp->intra_predictors[kTransformSize8x8][kIntraPredictorDcLeft] =
DcDefs::_8x8::DcLeft;
dsp->intra_predictors[kTransformSize8x8][kIntraPredictorDc] =
DcDefs::_8x8::Dc;
dsp->intra_predictors[kTransformSize8x8][kIntraPredictorHorizontal] =
Horizontal8xH_NEON<8>;
dsp->intra_predictors[kTransformSize8x8][kIntraPredictorVertical] =
Vertical8xH_NEON<8>;
// 8x16
dsp->intra_predictors[kTransformSize8x16][kIntraPredictorDcTop] =
DcDefs::_8x16::DcTop;
dsp->intra_predictors[kTransformSize8x16][kIntraPredictorDcLeft] =
DcDefs::_8x16::DcLeft;
dsp->intra_predictors[kTransformSize8x16][kIntraPredictorDc] =
DcDefs::_8x16::Dc;
dsp->intra_predictors[kTransformSize8x16][kIntraPredictorVertical] =
Vertical8xH_NEON<16>;
// 8x32
dsp->intra_predictors[kTransformSize8x32][kIntraPredictorDcTop] =
DcDefs::_8x32::DcTop;
dsp->intra_predictors[kTransformSize8x32][kIntraPredictorDcLeft] =
DcDefs::_8x32::DcLeft;
dsp->intra_predictors[kTransformSize8x32][kIntraPredictorDc] =
DcDefs::_8x32::Dc;
dsp->intra_predictors[kTransformSize8x32][kIntraPredictorHorizontal] =
Horizontal8xH_NEON<32>;
dsp->intra_predictors[kTransformSize8x32][kIntraPredictorVertical] =
Vertical8xH_NEON<32>;
// 16x4
dsp->intra_predictors[kTransformSize16x4][kIntraPredictorDcTop] =
DcDefs::_16x4::DcTop;
dsp->intra_predictors[kTransformSize16x4][kIntraPredictorDcLeft] =
DcDefs::_16x4::DcLeft;
dsp->intra_predictors[kTransformSize16x4][kIntraPredictorDc] =
DcDefs::_16x4::Dc;
dsp->intra_predictors[kTransformSize16x4][kIntraPredictorVertical] =
Vertical16xH_NEON<4>;
// 16x8
dsp->intra_predictors[kTransformSize16x8][kIntraPredictorDcTop] =
DcDefs::_16x8::DcTop;
dsp->intra_predictors[kTransformSize16x8][kIntraPredictorDcLeft] =
DcDefs::_16x8::DcLeft;
dsp->intra_predictors[kTransformSize16x8][kIntraPredictorDc] =
DcDefs::_16x8::Dc;
dsp->intra_predictors[kTransformSize16x8][kIntraPredictorHorizontal] =
Horizontal16xH_NEON<8>;
dsp->intra_predictors[kTransformSize16x8][kIntraPredictorVertical] =
Vertical16xH_NEON<8>;
// 16x16
dsp->intra_predictors[kTransformSize16x16][kIntraPredictorDcTop] =
DcDefs::_16x16::DcTop;
dsp->intra_predictors[kTransformSize16x16][kIntraPredictorDcLeft] =
DcDefs::_16x16::DcLeft;
dsp->intra_predictors[kTransformSize16x16][kIntraPredictorDc] =
DcDefs::_16x16::Dc;
dsp->intra_predictors[kTransformSize16x16][kIntraPredictorVertical] =
Vertical16xH_NEON<16>;
// 16x32
dsp->intra_predictors[kTransformSize16x32][kIntraPredictorDcTop] =
DcDefs::_16x32::DcTop;
dsp->intra_predictors[kTransformSize16x32][kIntraPredictorDcLeft] =
DcDefs::_16x32::DcLeft;
dsp->intra_predictors[kTransformSize16x32][kIntraPredictorDc] =
DcDefs::_16x32::Dc;
dsp->intra_predictors[kTransformSize16x32][kIntraPredictorVertical] =
Vertical16xH_NEON<32>;
// 16x64
dsp->intra_predictors[kTransformSize16x64][kIntraPredictorDcTop] =
DcDefs::_16x64::DcTop;
dsp->intra_predictors[kTransformSize16x64][kIntraPredictorDcLeft] =
DcDefs::_16x64::DcLeft;
dsp->intra_predictors[kTransformSize16x64][kIntraPredictorDc] =
DcDefs::_16x64::Dc;
dsp->intra_predictors[kTransformSize16x64][kIntraPredictorVertical] =
Vertical16xH_NEON<64>;
// 32x8
dsp->intra_predictors[kTransformSize32x8][kIntraPredictorDcTop] =
DcDefs::_32x8::DcTop;
dsp->intra_predictors[kTransformSize32x8][kIntraPredictorDcLeft] =
DcDefs::_32x8::DcLeft;
dsp->intra_predictors[kTransformSize32x8][kIntraPredictorDc] =
DcDefs::_32x8::Dc;
dsp->intra_predictors[kTransformSize32x8][kIntraPredictorVertical] =
Vertical32xH_NEON<8>;
// 32x16
dsp->intra_predictors[kTransformSize32x16][kIntraPredictorDcTop] =
DcDefs::_32x16::DcTop;
dsp->intra_predictors[kTransformSize32x16][kIntraPredictorDcLeft] =
DcDefs::_32x16::DcLeft;
dsp->intra_predictors[kTransformSize32x16][kIntraPredictorDc] =
DcDefs::_32x16::Dc;
dsp->intra_predictors[kTransformSize32x16][kIntraPredictorVertical] =
Vertical32xH_NEON<16>;
// 32x32
dsp->intra_predictors[kTransformSize32x32][kIntraPredictorDcTop] =
DcDefs::_32x32::DcTop;
dsp->intra_predictors[kTransformSize32x32][kIntraPredictorDcLeft] =
DcDefs::_32x32::DcLeft;
dsp->intra_predictors[kTransformSize32x32][kIntraPredictorDc] =
DcDefs::_32x32::Dc;
dsp->intra_predictors[kTransformSize32x32][kIntraPredictorVertical] =
Vertical32xH_NEON<32>;
// 32x64
dsp->intra_predictors[kTransformSize32x64][kIntraPredictorDcTop] =
DcDefs::_32x64::DcTop;
dsp->intra_predictors[kTransformSize32x64][kIntraPredictorDcLeft] =
DcDefs::_32x64::DcLeft;
dsp->intra_predictors[kTransformSize32x64][kIntraPredictorDc] =
DcDefs::_32x64::Dc;
dsp->intra_predictors[kTransformSize32x64][kIntraPredictorHorizontal] =
Horizontal32xH_NEON<64>;
dsp->intra_predictors[kTransformSize32x64][kIntraPredictorVertical] =
Vertical32xH_NEON<64>;
// 64x16
dsp->intra_predictors[kTransformSize64x16][kIntraPredictorDcTop] =
DcDefs::_64x16::DcTop;
dsp->intra_predictors[kTransformSize64x16][kIntraPredictorDcLeft] =
DcDefs::_64x16::DcLeft;
dsp->intra_predictors[kTransformSize64x16][kIntraPredictorDc] =
DcDefs::_64x16::Dc;
dsp->intra_predictors[kTransformSize64x16][kIntraPredictorVertical] =
Vertical64xH_NEON<16>;
// 64x32
dsp->intra_predictors[kTransformSize64x32][kIntraPredictorDcTop] =
DcDefs::_64x32::DcTop;
dsp->intra_predictors[kTransformSize64x32][kIntraPredictorDcLeft] =
DcDefs::_64x32::DcLeft;
dsp->intra_predictors[kTransformSize64x32][kIntraPredictorDc] =
DcDefs::_64x32::Dc;
dsp->intra_predictors[kTransformSize64x32][kIntraPredictorVertical] =
Vertical64xH_NEON<32>;
// 64x64
dsp->intra_predictors[kTransformSize64x64][kIntraPredictorDcTop] =
DcDefs::_64x64::DcTop;
dsp->intra_predictors[kTransformSize64x64][kIntraPredictorDcLeft] =
DcDefs::_64x64::DcLeft;
dsp->intra_predictors[kTransformSize64x64][kIntraPredictorDc] =
DcDefs::_64x64::Dc;
dsp->intra_predictors[kTransformSize64x64][kIntraPredictorVertical] =
Vertical64xH_NEON<64>;
}
} // namespace
} // namespace high_bitdepth
#endif // LIBGAV1_MAX_BITDEPTH >= 10
void IntraPredInit_NEON() {
low_bitdepth::Init8bpp();
#if LIBGAV1_MAX_BITDEPTH >= 10
high_bitdepth::Init10bpp();
#endif
}
} // namespace dsp
} // namespace libgav1
#else // !LIBGAV1_ENABLE_NEON
namespace libgav1 {
namespace dsp {
void IntraPredInit_NEON() {}
} // namespace dsp
} // namespace libgav1
#endif // LIBGAV1_ENABLE_NEON
|