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
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
//! Residual coefficient encoding and statistics recording.
//!
//! Contains methods for encoding DCT coefficients into the bitstream,
//! trellis-optimized quantization dispatch, error diffusion, token buffer
//! for deferred encoding, and probability statistics recording.
use alloc::vec::Vec;
use crate::common::transform;
use crate::common::types::*;
use super::{MacroblockInfo, QuantizedMbCoeffs};
use crate::encoder::cost::{
NUM_BANDS, NUM_CTX, NUM_PROBAS, NUM_TYPES, ProbaStats, TokenType, VP8_ENC_BANDS, record_coeffs,
trellis_quantize_block,
};
// Known lengths of PROB_DCT_CAT extra-value probability tables (Cat1-Cat6).
// Eliminates sentinel `prob == 0` branch per iteration in the hot loop.
const DCT_CAT_LENGTHS: [usize; 6] = [1, 2, 3, 4, 5, 11];
// -----------------------------------------------------------------------
// Token buffer for deferred coefficient encoding
// -----------------------------------------------------------------------
/// Flag indicating a token has a constant (embedded) probability.
const FIXED_PROBA_BIT: u16 = 1 << 14;
/// Compute flat probability index base for `probs[type][band][ctx][0]`.
/// Add the node offset (0-10) to get the specific probability index.
#[inline]
fn token_id(coeff_type: usize, band: usize, ctx: usize) -> u16 {
debug_assert!(coeff_type < NUM_TYPES);
debug_assert!(band < NUM_BANDS);
debug_assert!(ctx < NUM_CTX);
(NUM_PROBAS * (ctx + NUM_CTX * (band + NUM_BANDS * coeff_type))) as u16
}
/// Buffer of bit-level tokens for deferred emission to the arithmetic encoder.
///
/// Each token is a u16 matching libwebp's `token_t` layout (token_enc.c):
/// - bit 15: bit value (0 or 1)
/// - bit 14: FIXED_PROBA_BIT (1 = constant probability, 0 = indexed)
/// - bits 0-13: flat probability index (if dynamic) or probability value (if constant)
///
/// During recording, tokens are stored alongside ProbaStats updates.
/// During emission, dynamic tokens look up probabilities from the (now-updated)
/// probability table, while constant tokens use their embedded probability.
pub(crate) struct TokenBuffer {
tokens: Vec<u16>,
}
#[allow(dead_code)]
impl TokenBuffer {
pub fn new() -> Self {
Self { tokens: Vec::new() }
}
pub fn with_estimated_capacity(num_macroblocks: usize) -> Self {
// libwebp uses 2 * 16 * 24 = 768 tokens per macroblock
Self {
tokens: Vec::with_capacity(num_macroblocks * 768),
}
}
pub fn clear(&mut self) {
self.tokens.clear();
}
/// Record a dynamic-probability bit decision.
#[inline]
fn add_token(&mut self, bit: bool, proba_idx: u16) {
debug_assert!(
proba_idx < FIXED_PROBA_BIT,
"proba_idx {proba_idx} overlaps FIXED_PROBA_BIT"
);
self.tokens.push(((bit as u16) << 15) | proba_idx);
}
/// Record a fixed-probability bit decision.
#[inline]
fn add_constant_token(&mut self, bit: bool, proba: u8) {
self.tokens
.push(((bit as u16) << 15) | FIXED_PROBA_BIT | (proba as u16));
}
pub fn len(&self) -> usize {
self.tokens.len()
}
pub fn is_empty(&self) -> bool {
self.tokens.is_empty()
}
/// Emit all tokens to an arithmetic encoder using the given probability table.
///
/// Dynamic tokens look up their probability from `probas` using the stored
/// flat index. Constant tokens use their embedded probability directly.
///
/// Matches libwebp's `VP8EmitTokens` (token_enc.c).
pub fn emit_tokens(
&self,
encoder: &mut crate::encoder::arithmetic::ArithmeticEncoder,
probas: &TokenProbTables,
) {
// Flatten 4D probability table to 1D for direct indexing.
// Layout matches token_id(): probas[t][b][c][p] → flat[token_id(t,b,c) + p]
// This eliminates 5 integer divisions per dynamic token in the hot loop.
let flat_probas = Self::flatten_probas(probas);
// Split loop: process dynamic tokens (majority) with minimal branching.
// FIXED_PROBA_BIT tokens (sign bits, category extra bits) are ~30% of tokens.
for &token in &self.tokens {
let bit = (token >> 15) != 0;
let raw_idx = token & 0x3FFF;
// For fixed-proba tokens, bit 14 is set and bits 0-7 hold the probability.
// For dynamic tokens, bits 0-13 hold the flat index.
// Branchless: use the fixed proba when FIXED_PROBA_BIT is set, else lookup.
let proba = if (token & FIXED_PROBA_BIT) != 0 {
raw_idx as u8
} else {
flat_probas[raw_idx as usize]
};
encoder.write_bool(bit, proba);
}
}
/// Flatten 4D probability table to match token_id() flat indexing.
/// TokenProbTables is [4][8][3][11] = 1056 bytes, same layout as flat array.
fn flatten_probas(
probas: &TokenProbTables,
) -> [u8; NUM_TYPES * NUM_BANDS * NUM_CTX * NUM_PROBAS] {
let mut flat = [0u8; NUM_TYPES * NUM_BANDS * NUM_CTX * NUM_PROBAS];
for (t, type_bands) in probas.iter().enumerate() {
for (b, band_ctxs) in type_bands.iter().enumerate() {
for (c, ctx_probas) in band_ctxs.iter().enumerate() {
let offset = NUM_PROBAS * (c + NUM_CTX * (b + NUM_BANDS * t));
flat[offset..offset + NUM_PROBAS].copy_from_slice(ctx_probas);
}
}
}
flat
}
/// Record tokens for a quantized coefficient block.
///
/// Simultaneously records bit-level tokens for deferred emission AND
/// updates ProbaStats for probability refinement.
///
/// Returns true if the block has non-zero coefficients (for complexity tracking).
///
/// Optimized vs libwebp's `VP8RecordCoeffTokens` (token_enc.c):
/// - Pre-resolves stats row `&mut [u32; 11]` per band/ctx (eliminates 4D index per call)
/// - Inlines magnitude tree (avoids passing &mut stats through function boundary)
pub fn record_coeff_tokens(
&mut self,
stats: &mut ProbaStats,
coeffs: &[i32; 16],
coeff_type: usize,
first_coeff: usize,
initial_ctx: usize,
) -> bool {
// Find last non-zero coefficient
let last = coeffs[first_coeff..]
.iter()
.rposition(|&c| c != 0)
.map(|i| (i + first_coeff) as i32)
.unwrap_or(-1);
let mut n = first_coeff;
let mut band = VP8_ENC_BANDS[n] as usize;
let mut ctx = initial_ctx;
let mut base_id = token_id(coeff_type, band, ctx);
// Node 0: Is there any non-zero coefficient? (not EOB)
let not_eob = last >= first_coeff as i32;
self.add_token(not_eob, base_id);
record_stat(&mut stats.stats[coeff_type][band][ctx][0], not_eob);
if !not_eob {
return false; // All zero
}
while n < 16 {
let c = coeffs[n];
n += 1;
let sign = c < 0;
let v = c.unsigned_abs();
// Pre-resolve stats row for current band/ctx.
// All nodes (1-10) within one coefficient use the same band/ctx.
let s = &mut stats.stats[coeff_type][band][ctx];
// Node 1: Is this coefficient non-zero?
self.add_token(v != 0, base_id + 1);
record_stat(&mut s[1], v != 0);
if v == 0 {
// Zero coefficient: context = 0
band = VP8_ENC_BANDS[n] as usize;
ctx = 0;
base_id = token_id(coeff_type, band, ctx);
continue;
}
// Node 2: Is |coeff| > 1?
self.add_token(v > 1, base_id + 2);
record_stat(&mut s[2], v > 1);
if v > 1 {
// Magnitude tree (nodes 3-10), all same band/ctx as s
self.add_token(v > 4, base_id + 3);
record_stat(&mut s[3], v > 4);
if v <= 4 {
self.add_token(v != 2, base_id + 4);
record_stat(&mut s[4], v != 2);
if v != 2 {
self.add_token(v == 4, base_id + 5);
record_stat(&mut s[5], v == 4);
}
} else {
self.add_token(v > 10, base_id + 6);
record_stat(&mut s[6], v > 10);
if v <= 10 {
self.add_token(v > 6, base_id + 7);
record_stat(&mut s[7], v > 6);
if v <= 6 {
self.add_constant_token(v == 6, 159);
} else {
self.add_constant_token(v >= 9, 165);
self.add_constant_token((v & 1) == 0, 145);
}
} else {
let residue = v - 3;
if residue < (8 << 1) {
// Cat3
self.add_token(false, base_id + 8);
record_stat(&mut s[8], false);
self.add_token(false, base_id + 9);
record_stat(&mut s[9], false);
let r = residue - 8;
for i in 0..DCT_CAT_LENGTHS[2] {
self.add_constant_token(
(r & (1 << (2 - i))) != 0,
PROB_DCT_CAT[2][i],
);
}
} else if residue < (8 << 2) {
// Cat4
self.add_token(false, base_id + 8);
record_stat(&mut s[8], false);
self.add_token(true, base_id + 9);
record_stat(&mut s[9], true);
let r = residue - (8 << 1);
for i in 0..DCT_CAT_LENGTHS[3] {
self.add_constant_token(
(r & (1 << (3 - i))) != 0,
PROB_DCT_CAT[3][i],
);
}
} else if residue < (8 << 3) {
// Cat5
self.add_token(true, base_id + 8);
record_stat(&mut s[8], true);
self.add_token(false, base_id + 10);
record_stat(&mut s[10], false);
let r = residue - (8 << 2);
for i in 0..DCT_CAT_LENGTHS[4] {
self.add_constant_token(
(r & (1 << (4 - i))) != 0,
PROB_DCT_CAT[4][i],
);
}
} else {
// Cat6
self.add_token(true, base_id + 8);
record_stat(&mut s[8], true);
self.add_token(true, base_id + 10);
record_stat(&mut s[10], true);
let r = residue - (8 << 3);
for i in 0..DCT_CAT_LENGTHS[5] {
self.add_constant_token(
(r & (1 << (10 - i))) != 0,
PROB_DCT_CAT[5][i],
);
}
}
}
}
}
// Update band/ctx for next coefficient
band = VP8_ENC_BANDS[n] as usize;
ctx = if v <= 1 { 1 } else { 2 };
base_id = token_id(coeff_type, band, ctx);
// Sign bit (constant probability 128)
self.add_constant_token(sign, 128);
// Node 0 for next position: more non-zero coefficients?
if n == 16 {
return true;
}
let not_eob_next = (n as i32) <= last;
self.add_token(not_eob_next, base_id);
record_stat(&mut stats.stats[coeff_type][band][ctx][0], not_eob_next);
if !not_eob_next {
return true; // EOB
}
}
true
}
}
/// Record a single probability statistic (inlined).
/// Matches libwebp's VP8RecordStats: upper 16 bits = total, lower 16 = count of 1s.
#[inline(always)]
fn record_stat(stat: &mut u32, bit: bool) {
if *stat >= 0xfffe_0000 {
*stat = ((*stat + 1) >> 1) & 0x7fff_7fff;
}
*stat += 0x0001_0000 + bit as u32;
}
impl<'a> super::Vp8Encoder<'a> {
/// Apply Floyd-Steinberg-like error diffusion to chroma DC coefficients.
///
/// This reduces banding artifacts in smooth gradients by spreading quantization
/// error to neighboring blocks. The pattern for a 2x2 grid of chroma blocks:
/// ```text
/// | c[0] | c[1] | errors: err0, err1
/// | c[2] | c[3] | err2, err3
/// ```
///
/// Modifies the DC coefficients in place and stores errors for next macroblock.
pub(super) fn apply_chroma_error_diffusion(
&mut self,
u_blocks: &mut [i32; 16 * 4],
v_blocks: &mut [i32; 16 * 4],
mbx: usize,
uv_matrix: &crate::encoder::cost::VP8Matrix,
) {
// Diffusion constants from libwebp
const C1: i32 = 7; // fraction from top
const C2: i32 = 8; // fraction from left
const DSHIFT: i32 = 4;
const DSCALE: i32 = 1;
let q = uv_matrix.q[0] as i32;
let iq = uv_matrix.iq[0];
let bias = uv_matrix.bias[0];
// Helper: add diffused error to DC, predict quantization, return error
// Does NOT overwrite the coefficient - leaves it adjusted for encoding
let diffuse_dc = |dc: &mut i32, top_err: i8, left_err: i8| -> i8 {
// Add diffused error from neighbors
let adjustment = (C1 * top_err as i32 + C2 * left_err as i32) >> (DSHIFT - DSCALE);
*dc += adjustment;
// Predict what quantization will produce (to compute error)
let sign = *dc < 0;
let abs_dc = dc.unsigned_abs();
let zthresh = ((1u32 << 17) - 1 - bias) / iq;
let level = if abs_dc > zthresh {
((abs_dc * iq + bias) >> 17) as i32
} else {
0
};
// Error = |adjusted_input| - |reconstruction|
// This is what we'll diffuse to neighbors
let err = abs_dc as i32 - level * q;
let signed_err = if sign { -err } else { err };
(signed_err >> DSCALE).clamp(-127, 127) as i8
};
// Process each channel's 4 blocks in scan order
let process_channel =
|blocks: &mut [i32; 16 * 4], top: [i8; 2], left: [i8; 2]| -> [i8; 4] {
// Block 0 (position 0): top-left, uses top[0] and left[0]
let err0 = diffuse_dc(&mut blocks[0], top[0], left[0]);
// Block 1 (position 16): top-right, uses top[1] and err0
let err1 = diffuse_dc(&mut blocks[16], top[1], err0);
// Block 2 (position 32): bottom-left, uses err0 and left[1]
let err2 = diffuse_dc(&mut blocks[32], err0, left[1]);
// Block 3 (position 48): bottom-right, uses err1 and err2
let err3 = diffuse_dc(&mut blocks[48], err1, err2);
[err0, err1, err2, err3]
};
// Process U channel
let u_errs = process_channel(u_blocks, self.top_derr[mbx][0], self.left_derr[0]);
// Process V channel
let v_errs = process_channel(v_blocks, self.top_derr[mbx][1], self.left_derr[1]);
// Store errors for next macroblock
for (ch, errs) in [(0usize, u_errs), (1, v_errs)] {
let [_err0, err1, err2, err3] = errs;
// left[0] = err1, left[1] = 3/4 of err3
self.left_derr[ch][0] = err1;
self.left_derr[ch][1] = ((3 * err3 as i32) >> 2) as i8;
// top[0] = err2, top[1] = 1/4 of err3
self.top_derr[mbx][ch][0] = err2;
self.top_derr[mbx][ch][1] = (err3 as i32 - self.left_derr[ch][1] as i32) as i8;
}
}
// 13 in specification, matches read_residual_data in the decoder
// Kept as fallback path — the token buffer path (record_residual_tokens + emit_tokens)
// replaces this for normal encoding.
#[allow(dead_code)]
pub(super) fn encode_residual_data(
&mut self,
macroblock_info: &MacroblockInfo,
partition_index: usize,
mbx: usize,
y_block_data: &[i32; 16 * 16],
u_block_data: &[i32; 16 * 4],
v_block_data: &[i32; 16 * 4],
) {
let mut plane = if macroblock_info.luma_mode == LumaMode::B {
Plane::YCoeff0
} else {
Plane::Y2
};
// Extract VP8 matrices and trellis lambdas upfront to avoid borrow conflicts
let segment = &self.segments[macroblock_info.segment_id.unwrap_or(0)];
let y1_matrix = segment.y1_matrix.clone().unwrap();
let y2_matrix = segment.y2_matrix.clone().unwrap();
let uv_matrix = segment.uv_matrix.clone().unwrap();
let psy_config = segment.psy_config.clone();
// Trellis lambda for Y1 blocks (I4 vs I16 mode)
let is_i4 = macroblock_info.luma_mode == LumaMode::B;
let y1_trellis_lambda = if self.do_trellis {
Some(if is_i4 {
segment.lambda_trellis_i4
} else {
segment.lambda_trellis_i16
})
} else {
None
};
// Note: libwebp disables trellis for UV (DO_TRELLIS_UV = 0)
// and for Y2 DC coefficients, so we use None for those
// Y2
if plane == Plane::Y2 {
// encode 0th coefficient of each luma
let mut coeffs0 = get_coeffs0_from_block(y_block_data);
// wht here on the 0th coeffs
transform::wht4x4(&mut coeffs0);
let complexity = self.left_complexity.y2 + self.top_complexity[mbx].y2;
let has_coeffs = self.encode_coefficients(
&coeffs0,
partition_index,
plane,
complexity.into(),
&y2_matrix,
None, // No trellis for Y2 DC
&psy_config,
);
self.left_complexity.y2 = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y2 = if has_coeffs { 1 } else { 0 };
// next encode luma coefficients without the 0th coeffs
plane = Plane::YCoeff1;
}
// now encode the 16 luma 4x4 subblocks in the macroblock
for y in 0usize..4 {
let mut left = self.left_complexity.y[y];
for x in 0..4 {
let block = y_block_data[y * 4 * 16 + x * 16..][..16]
.try_into()
.unwrap();
let top = self.top_complexity[mbx].y[x];
let complexity = left + top;
let has_coeffs = self.encode_coefficients(
&block,
partition_index,
plane,
complexity.into(),
&y1_matrix,
y1_trellis_lambda,
&psy_config,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y[x] = if has_coeffs { 1 } else { 0 };
}
// set for the next macroblock
self.left_complexity.y[y] = left;
}
plane = Plane::Chroma;
// Note: Error diffusion is already applied in transform_chroma_blocks
// so u_block_data and v_block_data contain the error-diffused values
// encode the 4 u 4x4 subblocks
for y in 0usize..2 {
let mut left = self.left_complexity.u[y];
for x in 0usize..2 {
let block = u_block_data[y * 2 * 16 + x * 16..][..16]
.try_into()
.unwrap();
let top = self.top_complexity[mbx].u[x];
let complexity = left + top;
let has_coeffs = self.encode_coefficients(
&block,
partition_index,
plane,
complexity.into(),
&uv_matrix,
None, // No trellis for UV (libwebp: DO_TRELLIS_UV = 0)
&psy_config,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].u[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.u[y] = left;
}
// encode the 4 v 4x4 subblocks
for y in 0usize..2 {
let mut left = self.left_complexity.v[y];
for x in 0usize..2 {
let block = v_block_data[y * 2 * 16 + x * 16..][..16]
.try_into()
.unwrap();
let top = self.top_complexity[mbx].v[x];
let complexity = left + top;
let has_coeffs = self.encode_coefficients(
&block,
partition_index,
plane,
complexity.into(),
&uv_matrix,
None, // No trellis for UV (libwebp: DO_TRELLIS_UV = 0)
&psy_config,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].v[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.v[y] = left;
}
}
// encodes the coefficients which is the reverse procedure of read_coefficients in the decoder
// returns whether there was any non-zero data in the block for the complexity
// Kept as fallback — token buffer path replaces this.
#[allow(dead_code)]
#[allow(clippy::too_many_arguments)]
pub(super) fn encode_coefficients(
&mut self,
block: &[i32; 16],
partition_index: usize,
plane: Plane,
complexity: usize,
matrix: &crate::encoder::cost::VP8Matrix,
trellis_lambda: Option<u32>,
psy_config: &crate::encoder::psy::PsyConfig,
) -> bool {
// transform block
// dc is used for the 0th coefficient, ac for the others
let encoder = &mut self.partitions[partition_index];
let first_coeff = if plane == Plane::YCoeff1 { 1 } else { 0 };
let probs = &self.token_probs[plane as usize];
assert!(complexity <= 2);
let mut complexity = complexity;
// convert to zigzag and quantize using VP8Matrix biased quantization
// this is the only lossy part of the encoding
let mut zigzag_block = [0i32; 16];
if let Some(lambda) = trellis_lambda {
// Trellis quantization for better RD optimization
let mut coeffs = *block;
let ctype = plane as usize;
trellis_quantize_block(
&mut coeffs,
&mut zigzag_block,
matrix,
lambda,
first_coeff,
&self.level_costs,
ctype,
complexity,
psy_config,
);
} else {
// Simple quantization
for i in first_coeff..16 {
let zigzag_index = usize::from(ZIGZAG[i]);
zigzag_block[i] = matrix.quantize_coeff(block[zigzag_index], zigzag_index);
}
}
// get index of last coefficient that isn't 0
let end_of_block_index =
if let Some(last_non_zero_index) = zigzag_block.iter().rev().position(|x| *x != 0) {
(15 - last_non_zero_index) + 1
} else {
// if it's all 0s then the first block is end of block
0
};
let mut skip_eob = false;
for index in first_coeff..end_of_block_index {
let coeff = zigzag_block[index];
let band = usize::from(COEFF_BANDS[index]);
let probabilities = &probs[band][complexity];
let start_index_token_tree = if skip_eob { 2 } else { 0 };
let token_tree = &DCT_TOKEN_TREE;
let token_probs = probabilities;
let token = match coeff.abs() {
0 => {
encoder.write_with_tree_start_index(
token_tree,
token_probs,
DCT_0,
start_index_token_tree,
);
// never going to have an end of block after a 0, so skip checking next coeff
skip_eob = true;
DCT_0
}
// just encode as literal
literal @ 1..=4 => {
encoder.write_with_tree_start_index(
token_tree,
token_probs,
literal as i8,
start_index_token_tree,
);
skip_eob = false;
literal as i8
}
// encode the category
value => {
let category = match value {
5..=6 => DCT_CAT1,
7..=10 => DCT_CAT2,
11..=18 => DCT_CAT3,
19..=34 => DCT_CAT4,
35..=66 => DCT_CAT5,
67..=2048 => DCT_CAT6,
_ => unreachable!(),
};
encoder.write_with_tree_start_index(
token_tree,
token_probs,
category,
start_index_token_tree,
);
let category_probs = PROB_DCT_CAT[(category - DCT_CAT1) as usize];
let extra = value - i32::from(DCT_CAT_BASE[(category - DCT_CAT1) as usize]);
let mut mask = if category == DCT_CAT6 {
1 << (11 - 1)
} else {
1 << (category - DCT_CAT1)
};
for &prob in category_probs.iter() {
if prob == 0 {
break;
}
let extra_bool = extra & mask > 0;
encoder.write_bool(extra_bool, prob);
mask >>= 1;
}
skip_eob = false;
category
}
};
// encode sign if token is not zero
if token != DCT_0 {
// note flag means coeff is negative
encoder.write_flag(!coeff.is_positive());
}
complexity = match token {
DCT_0 => 0,
DCT_1 => 1,
_ => 2,
};
}
// encode end of block
if end_of_block_index < 16 {
let band_index = usize::max(first_coeff, end_of_block_index);
let band = usize::from(COEFF_BANDS[band_index]);
let probabilities = &probs[band][complexity];
encoder.write_with_tree(&DCT_TOKEN_TREE, probabilities, DCT_EOB);
}
// whether the block has a non zero coefficient
end_of_block_index > 0
}
/// Check if all coefficients in a macroblock would quantize to zero.
/// Used for skip detection.
pub(super) fn check_all_coeffs_zero(
&self,
macroblock_info: &MacroblockInfo,
y_block_data: &[i32; 16 * 16],
u_block_data: &[i32; 16 * 4],
v_block_data: &[i32; 16 * 4],
) -> bool {
let segment = &self.segments[macroblock_info.segment_id.unwrap_or(0)];
let y1_matrix = segment.y1_matrix.as_ref().unwrap();
let y2_matrix = segment.y2_matrix.as_ref().unwrap();
let uv_matrix = segment.uv_matrix.as_ref().unwrap();
// For Intra16 mode, check Y2 block (DC coefficients after WHT)
if macroblock_info.luma_mode != LumaMode::B {
let mut coeffs0 = get_coeffs0_from_block(y_block_data);
transform::wht4x4(&mut coeffs0);
for (idx, &val) in coeffs0.iter().enumerate() {
if y2_matrix.quantize_coeff(val, idx) != 0 {
return false;
}
}
// Check Y blocks (AC only for Intra16)
for block in y_block_data.chunks_exact(16) {
for (idx, &val) in block.iter().enumerate().skip(1) {
if y1_matrix.quantize_coeff(val, idx) != 0 {
return false;
}
}
}
} else {
// For Intra4 mode, check all Y coefficients (DC + AC)
for block in y_block_data.chunks_exact(16) {
for (idx, &val) in block.iter().enumerate() {
if y1_matrix.quantize_coeff(val, idx) != 0 {
return false;
}
}
}
}
// Check U blocks
for block in u_block_data.chunks_exact(16) {
for (idx, &val) in block.iter().enumerate() {
if uv_matrix.quantize_coeff(val, idx) != 0 {
return false;
}
}
}
// Check V blocks
for block in v_block_data.chunks_exact(16) {
for (idx, &val) in block.iter().enumerate() {
if uv_matrix.quantize_coeff(val, idx) != 0 {
return false;
}
}
}
true
}
/// Record token statistics for a macroblock (used in first pass of two-pass encoding).
/// This mirrors the structure of encode_residual_data but only records stats.
/// Kept as fallback — token buffer path replaces this.
#[allow(dead_code)]
pub(super) fn record_residual_stats(
&mut self,
macroblock_info: &MacroblockInfo,
mbx: usize,
y_block_data: &[i32; 16 * 16],
u_block_data: &[i32; 16 * 4],
v_block_data: &[i32; 16 * 4],
) {
// Extract VP8 matrices
let segment = &self.segments[macroblock_info.segment_id.unwrap_or(0)];
let y1_matrix = segment.y1_matrix.clone().unwrap();
let y2_matrix = segment.y2_matrix.clone().unwrap();
let uv_matrix = segment.uv_matrix.clone().unwrap();
let psy_config = segment.psy_config.clone();
let is_i4 = macroblock_info.luma_mode == LumaMode::B;
// Y2 (DC transform) - only for I16 mode
if !is_i4 {
let mut coeffs0 = get_coeffs0_from_block(y_block_data);
transform::wht4x4(&mut coeffs0);
// Quantize to zigzag order
let mut zigzag = [0i32; 16];
for i in 0..16 {
let zigzag_index = usize::from(ZIGZAG[i]);
zigzag[i] = y2_matrix.quantize_coeff(coeffs0[zigzag_index], zigzag_index);
}
let complexity = self.left_complexity.y2 + self.top_complexity[mbx].y2;
record_coeffs(
&zigzag,
TokenType::I16DC,
0,
complexity.min(2) as usize,
&mut self.proba_stats,
);
let has_coeffs = zigzag.iter().any(|&c| c != 0);
self.left_complexity.y2 = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y2 = if has_coeffs { 1 } else { 0 };
}
// Y1 blocks (AC only for I16, DC+AC for I4)
let token_type = if is_i4 {
TokenType::I4
} else {
TokenType::I16AC
};
let first_coeff = if is_i4 { 0 } else { 1 };
// Get trellis lambda based on block type
let trellis_lambda = if is_i4 {
segment.lambda_trellis_i4
} else {
segment.lambda_trellis_i16
};
for y in 0usize..4 {
let mut left = self.left_complexity.y[y];
for x in 0..4 {
let block: &[i32; 16] = y_block_data[y * 4 * 16 + x * 16..][..16]
.try_into()
.unwrap();
// Quantize to zigzag order
let mut zigzag = [0i32; 16];
let top = self.top_complexity[mbx].y[x];
let ctx0 = (left + top).min(2) as usize;
if self.do_trellis {
// Trellis quantization: optimizes coefficient levels for RD
let mut coeffs = *block;
// Use same ctype as record_coeffs: TokenType I4=3 or I16AC=0
let ctype = token_type as usize;
trellis_quantize_block(
&mut coeffs,
&mut zigzag,
&y1_matrix,
trellis_lambda,
first_coeff,
&self.level_costs,
ctype,
ctx0,
&psy_config,
);
} else {
// Simple quantization
for i in first_coeff..16 {
let zigzag_index = usize::from(ZIGZAG[i]);
zigzag[i] = y1_matrix.quantize_coeff(block[zigzag_index], zigzag_index);
}
}
record_coeffs(
&zigzag,
token_type,
first_coeff,
ctx0,
&mut self.proba_stats,
);
let has_coeffs = zigzag[first_coeff..].iter().any(|&c| c != 0);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.y[y] = left;
}
// U blocks
for y in 0usize..2 {
let mut left = self.left_complexity.u[y];
for x in 0usize..2 {
let block: &[i32; 16] = u_block_data[y * 2 * 16 + x * 16..][..16]
.try_into()
.unwrap();
let mut zigzag = [0i32; 16];
for i in 0..16 {
let zigzag_index = usize::from(ZIGZAG[i]);
zigzag[i] = uv_matrix.quantize_coeff(block[zigzag_index], zigzag_index);
}
let top = self.top_complexity[mbx].u[x];
let complexity = (left + top).min(2);
record_coeffs(
&zigzag,
TokenType::Chroma,
0,
complexity as usize,
&mut self.proba_stats,
);
let has_coeffs = zigzag.iter().any(|&c| c != 0);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].u[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.u[y] = left;
}
// V blocks
for y in 0usize..2 {
let mut left = self.left_complexity.v[y];
for x in 0usize..2 {
let block: &[i32; 16] = v_block_data[y * 2 * 16 + x * 16..][..16]
.try_into()
.unwrap();
let mut zigzag = [0i32; 16];
for i in 0..16 {
let zigzag_index = usize::from(ZIGZAG[i]);
zigzag[i] = uv_matrix.quantize_coeff(block[zigzag_index], zigzag_index);
}
let top = self.top_complexity[mbx].v[x];
let complexity = (left + top).min(2);
record_coeffs(
&zigzag,
TokenType::Chroma,
0,
complexity as usize,
&mut self.proba_stats,
);
let has_coeffs = zigzag.iter().any(|&c| c != 0);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].v[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.v[y] = left;
}
}
/// Record tokens for a macroblock's residual data using the token buffer.
///
/// This replaces both `encode_residual_data` (coefficient emission) and
/// `record_residual_stats` (probability statistics) for the token buffer path.
/// Tokens are stored for deferred emission; statistics are updated simultaneously.
///
/// Includes quantization (trellis or simple) matching the encode path exactly.
///
/// NOTE: Currently unused - record_residual_tokens_storing is used instead for
/// multi-pass encoding. Kept for reference and potential future use.
#[allow(dead_code)]
pub(super) fn record_residual_tokens(
&mut self,
macroblock_info: &MacroblockInfo,
mbx: usize,
y_block_data: &[i32; 16 * 16],
u_block_data: &[i32; 16 * 4],
v_block_data: &[i32; 16 * 4],
) {
// Extract VP8 matrices and trellis lambdas upfront
let segment = &self.segments[macroblock_info.segment_id.unwrap_or(0)];
let y1_matrix = segment.y1_matrix.clone().unwrap();
let y2_matrix = segment.y2_matrix.clone().unwrap();
let uv_matrix = segment.uv_matrix.clone().unwrap();
let psy_config = segment.psy_config.clone();
let is_i4 = macroblock_info.luma_mode == LumaMode::B;
let y1_trellis_lambda = if self.do_trellis {
Some(if is_i4 {
segment.lambda_trellis_i4
} else {
segment.lambda_trellis_i16
})
} else {
None
};
let token_type_y1 = if is_i4 {
TokenType::I4
} else {
TokenType::I16AC
};
let first_coeff_y1 = if is_i4 { 0 } else { 1 };
// Temporarily take token buffer to avoid borrow conflicts with self.proba_stats
let mut token_buf = self
.token_buffer
.take()
.expect("token buffer not initialized");
// Y2 (DC transform) - only for I16 mode
if !is_i4 {
let mut coeffs0 = get_coeffs0_from_block(y_block_data);
transform::wht4x4(&mut coeffs0);
let mut zigzag = [0i32; 16];
for i in 0..16 {
let zi = usize::from(ZIGZAG[i]);
zigzag[i] = y2_matrix.quantize_coeff(coeffs0[zi], zi);
}
let complexity = self.left_complexity.y2 + self.top_complexity[mbx].y2;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&zigzag,
TokenType::I16DC as usize,
0,
complexity.min(2) as usize,
);
self.left_complexity.y2 = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y2 = if has_coeffs { 1 } else { 0 };
}
// Y1 blocks (AC only for I16, DC+AC for I4)
for y in 0usize..4 {
let mut left = self.left_complexity.y[y];
for x in 0..4 {
let block: &[i32; 16] = y_block_data[y * 4 * 16 + x * 16..][..16]
.try_into()
.unwrap();
let mut zigzag = [0i32; 16];
let top = self.top_complexity[mbx].y[x];
let ctx0 = (left + top).min(2) as usize;
if let Some(lambda) = y1_trellis_lambda {
let mut coeffs = *block;
let ctype = token_type_y1 as usize;
trellis_quantize_block(
&mut coeffs,
&mut zigzag,
&y1_matrix,
lambda,
first_coeff_y1,
&self.level_costs,
ctype,
ctx0,
&psy_config,
);
} else {
for i in first_coeff_y1..16 {
let zi = usize::from(ZIGZAG[i]);
zigzag[i] = y1_matrix.quantize_coeff(block[zi], zi);
}
}
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&zigzag,
token_type_y1 as usize,
first_coeff_y1,
ctx0,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.y[y] = left;
}
// U blocks
for y in 0usize..2 {
let mut left = self.left_complexity.u[y];
for x in 0usize..2 {
let block: &[i32; 16] = u_block_data[y * 2 * 16 + x * 16..][..16]
.try_into()
.unwrap();
let mut zigzag = [0i32; 16];
for i in 0..16 {
let zi = usize::from(ZIGZAG[i]);
zigzag[i] = uv_matrix.quantize_coeff(block[zi], zi);
}
let top = self.top_complexity[mbx].u[x];
let complexity = (left + top).min(2) as usize;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&zigzag,
TokenType::Chroma as usize,
0,
complexity,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].u[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.u[y] = left;
}
// V blocks
for y in 0usize..2 {
let mut left = self.left_complexity.v[y];
for x in 0usize..2 {
let block: &[i32; 16] = v_block_data[y * 2 * 16 + x * 16..][..16]
.try_into()
.unwrap();
let mut zigzag = [0i32; 16];
for i in 0..16 {
let zi = usize::from(ZIGZAG[i]);
zigzag[i] = uv_matrix.quantize_coeff(block[zi], zi);
}
let top = self.top_complexity[mbx].v[x];
let complexity = (left + top).min(2) as usize;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&zigzag,
TokenType::Chroma as usize,
0,
complexity,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].v[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.v[y] = left;
}
// Put token buffer back
self.token_buffer = Some(token_buf);
}
/// Quantize a macroblock's coefficients without recording tokens.
///
/// Separates quantization from token recording so skip detection can check
/// the quantized result before committing to token recording. Eliminates
/// redundant quantization in `check_all_coeffs_zero`.
///
/// For non-trellis methods (0-4), quantization doesn't depend on complexity
/// context, so this produces identical results to the integrated path.
/// For trellis methods (5-6), use `record_residual_tokens_storing` instead.
#[allow(clippy::needless_range_loop)]
pub(super) fn quantize_mb_coeffs(
&self,
macroblock_info: &MacroblockInfo,
y_block_data: &[i32; 16 * 16],
u_block_data: &[i32; 16 * 4],
v_block_data: &[i32; 16 * 4],
) -> QuantizedMbCoeffs {
let segment = &self.segments[macroblock_info.segment_id.unwrap_or(0)];
let y1_matrix = segment.y1_matrix.as_ref().unwrap();
let y2_matrix = segment.y2_matrix.as_ref().unwrap();
let uv_matrix = segment.uv_matrix.as_ref().unwrap();
let is_i4 = macroblock_info.luma_mode == LumaMode::B;
let first_coeff_y1 = if is_i4 { 0usize } else { 1 };
let mut stored = QuantizedMbCoeffs {
y2_zigzag: [0; 16],
y1_zigzag: [[0; 16]; 16],
u_zigzag: [[0; 16]; 4],
v_zigzag: [[0; 16]; 4],
};
// Y2 (DC transform) - only for I16 mode
if !is_i4 {
let mut coeffs0 = get_coeffs0_from_block(y_block_data);
transform::wht4x4(&mut coeffs0);
for i in 0..16 {
let zi = usize::from(ZIGZAG[i]);
stored.y2_zigzag[i] = y2_matrix.quantize_coeff(coeffs0[zi], zi);
}
}
// Y1 blocks (simple quantization only — no trellis)
for y in 0usize..4 {
for x in 0..4 {
let block_idx = y * 4 + x;
let block: &[i32; 16] = y_block_data[block_idx * 16..][..16].try_into().unwrap();
for i in first_coeff_y1..16 {
let zi = usize::from(ZIGZAG[i]);
stored.y1_zigzag[block_idx][i] = y1_matrix.quantize_coeff(block[zi], zi);
}
}
}
// U blocks
for y in 0usize..2 {
for x in 0usize..2 {
let block_idx = y * 2 + x;
let block: &[i32; 16] = u_block_data[block_idx * 16..][..16].try_into().unwrap();
for i in 0..16 {
let zi = usize::from(ZIGZAG[i]);
stored.u_zigzag[block_idx][i] = uv_matrix.quantize_coeff(block[zi], zi);
}
}
}
// V blocks
for y in 0usize..2 {
for x in 0usize..2 {
let block_idx = y * 2 + x;
let block: &[i32; 16] = v_block_data[block_idx * 16..][..16].try_into().unwrap();
for i in 0..16 {
let zi = usize::from(ZIGZAG[i]);
stored.v_zigzag[block_idx][i] = uv_matrix.quantize_coeff(block[zi], zi);
}
}
}
stored
}
/// Record tokens for a macroblock's residual data and return the quantized coefficients.
/// Used in multi-pass encoding: pass 1 calls this to get coefficients for storage.
#[allow(clippy::needless_range_loop)] // i is used to index both ZIGZAG and output arrays
pub(super) fn record_residual_tokens_storing(
&mut self,
macroblock_info: &MacroblockInfo,
mbx: usize,
y_block_data: &[i32; 16 * 16],
u_block_data: &[i32; 16 * 4],
v_block_data: &[i32; 16 * 4],
) -> QuantizedMbCoeffs {
// Extract segment data by value/copy to avoid borrow conflicts with proba_stats.
// Only copies small scalar values (lambdas, flags), not the large matrices.
let segment_id = macroblock_info.segment_id.unwrap_or(0);
let is_i4 = macroblock_info.luma_mode == LumaMode::B;
let y1_trellis_lambda = if self.do_trellis {
Some(if is_i4 {
self.segments[segment_id].lambda_trellis_i4
} else {
self.segments[segment_id].lambda_trellis_i16
})
} else {
None
};
let token_type_y1 = if is_i4 {
TokenType::I4
} else {
TokenType::I16AC
};
let first_coeff_y1 = if is_i4 { 0 } else { 1 };
let mut token_buf = self
.token_buffer
.take()
.expect("token buffer not initialized");
// Storage for quantized coefficients
let mut stored = QuantizedMbCoeffs {
y2_zigzag: [0; 16],
y1_zigzag: [[0; 16]; 16],
u_zigzag: [[0; 16]; 4],
v_zigzag: [[0; 16]; 4],
};
// Y2 (DC transform) - only for I16 mode
if !is_i4 {
let y2_matrix = self.segments[segment_id].y2_matrix.as_ref().unwrap();
let mut coeffs0 = get_coeffs0_from_block(y_block_data);
transform::wht4x4(&mut coeffs0);
for i in 0..16 {
let zi = usize::from(ZIGZAG[i]);
stored.y2_zigzag[i] = y2_matrix.quantize_coeff(coeffs0[zi], zi);
}
let complexity = self.left_complexity.y2 + self.top_complexity[mbx].y2;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&stored.y2_zigzag,
TokenType::I16DC as usize,
0,
complexity.min(2) as usize,
);
self.left_complexity.y2 = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y2 = if has_coeffs { 1 } else { 0 };
}
// Y1 blocks
for y in 0usize..4 {
let mut left = self.left_complexity.y[y];
for x in 0..4 {
let block_idx = y * 4 + x;
let block: &[i32; 16] = y_block_data[block_idx * 16..][..16].try_into().unwrap();
let top = self.top_complexity[mbx].y[x];
let ctx0 = (left + top).min(2) as usize;
if let Some(lambda) = y1_trellis_lambda {
let mut coeffs = *block;
// Borrow segment fields individually to avoid conflict with proba_stats
let y1_matrix = self.segments[segment_id].y1_matrix.as_ref().unwrap();
let psy_config = &self.segments[segment_id].psy_config;
trellis_quantize_block(
&mut coeffs,
&mut stored.y1_zigzag[block_idx],
y1_matrix,
lambda,
first_coeff_y1,
&self.level_costs,
token_type_y1 as usize,
ctx0,
psy_config,
);
} else {
let y1_matrix = self.segments[segment_id].y1_matrix.as_ref().unwrap();
for i in first_coeff_y1..16 {
let zi = usize::from(ZIGZAG[i]);
stored.y1_zigzag[block_idx][i] = y1_matrix.quantize_coeff(block[zi], zi);
}
}
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&stored.y1_zigzag[block_idx],
token_type_y1 as usize,
first_coeff_y1,
ctx0,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.y[y] = left;
}
// U blocks
for y in 0usize..2 {
let mut left = self.left_complexity.u[y];
for x in 0usize..2 {
let block_idx = y * 2 + x;
let block: &[i32; 16] = u_block_data[block_idx * 16..][..16].try_into().unwrap();
{
let uv_matrix = self.segments[segment_id].uv_matrix.as_ref().unwrap();
for i in 0..16 {
let zi = usize::from(ZIGZAG[i]);
stored.u_zigzag[block_idx][i] = uv_matrix.quantize_coeff(block[zi], zi);
}
}
let top = self.top_complexity[mbx].u[x];
let complexity = (left + top).min(2) as usize;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&stored.u_zigzag[block_idx],
TokenType::Chroma as usize,
0,
complexity,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].u[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.u[y] = left;
}
// V blocks
for y in 0usize..2 {
let mut left = self.left_complexity.v[y];
for x in 0usize..2 {
let block_idx = y * 2 + x;
let block: &[i32; 16] = v_block_data[block_idx * 16..][..16].try_into().unwrap();
{
let uv_matrix = self.segments[segment_id].uv_matrix.as_ref().unwrap();
for i in 0..16 {
let zi = usize::from(ZIGZAG[i]);
stored.v_zigzag[block_idx][i] = uv_matrix.quantize_coeff(block[zi], zi);
}
}
let top = self.top_complexity[mbx].v[x];
let complexity = (left + top).min(2) as usize;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&stored.v_zigzag[block_idx],
TokenType::Chroma as usize,
0,
complexity,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].v[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.v[y] = left;
}
self.token_buffer = Some(token_buf);
stored
}
/// Record tokens from pre-quantized coefficients (no re-quantization).
/// Used in the two-phase encode path for non-trellis methods.
pub(super) fn record_from_stored_coeffs(
&mut self,
macroblock_info: &MacroblockInfo,
mbx: usize,
stored: &QuantizedMbCoeffs,
) {
let is_i4 = macroblock_info.luma_mode == LumaMode::B;
let token_type_y1 = if is_i4 {
TokenType::I4
} else {
TokenType::I16AC
};
let first_coeff_y1 = if is_i4 { 0 } else { 1 };
let mut token_buf = self
.token_buffer
.take()
.expect("token buffer not initialized");
// Y2 (DC transform) - only for I16 mode
if !is_i4 {
let complexity = self.left_complexity.y2 + self.top_complexity[mbx].y2;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&stored.y2_zigzag,
TokenType::I16DC as usize,
0,
complexity.min(2) as usize,
);
self.left_complexity.y2 = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y2 = if has_coeffs { 1 } else { 0 };
}
// Y1 blocks
for y in 0usize..4 {
let mut left = self.left_complexity.y[y];
for x in 0..4 {
let block_idx = y * 4 + x;
let top = self.top_complexity[mbx].y[x];
let ctx0 = (left + top).min(2) as usize;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&stored.y1_zigzag[block_idx],
token_type_y1 as usize,
first_coeff_y1,
ctx0,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].y[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.y[y] = left;
}
// U blocks
for y in 0usize..2 {
let mut left = self.left_complexity.u[y];
for x in 0usize..2 {
let block_idx = y * 2 + x;
let top = self.top_complexity[mbx].u[x];
let complexity = (left + top).min(2) as usize;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&stored.u_zigzag[block_idx],
TokenType::Chroma as usize,
0,
complexity,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].u[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.u[y] = left;
}
// V blocks
for y in 0usize..2 {
let mut left = self.left_complexity.v[y];
for x in 0usize..2 {
let block_idx = y * 2 + x;
let top = self.top_complexity[mbx].v[x];
let complexity = (left + top).min(2) as usize;
let has_coeffs = token_buf.record_coeff_tokens(
&mut self.proba_stats,
&stored.v_zigzag[block_idx],
TokenType::Chroma as usize,
0,
complexity,
);
left = if has_coeffs { 1 } else { 0 };
self.top_complexity[mbx].v[x] = if has_coeffs { 1 } else { 0 };
}
self.left_complexity.v[y] = left;
}
self.token_buffer = Some(token_buf);
}
}
pub(super) fn get_coeffs0_from_block(blocks: &[i32; 16 * 16]) -> [i32; 16] {
let mut coeffs0 = [0i32; 16];
for (coeff, first_coeff_value) in coeffs0.iter_mut().zip(blocks.iter().step_by(16)) {
*coeff = *first_coeff_value;
}
coeffs0
}