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
|
use crate::BLOCK_SIZE;
use framework::BitstreamFilter;
use glam::{IVec2, ivec2};
pub struct Enc {
res: IVec2,
last: Frame,
}
impl BitstreamFilter for Enc {
const INPUT_CODEC_ID: &str = "V_UNCOMPRESSED";
const OUTPUT_CODEC_ID: &str = "V_VCETEST2";
fn new(width: u32, height: u32) -> Self {
let res = ivec2(width as i32, height as i32);
Self {
res,
last: Frame::new(res),
}
}
fn process_block(&mut self, a: Vec<u8>) -> Vec<u8> {
let mut frame = Frame {
data: a,
res: self.res,
};
for by in 0..frame.res.y / BLOCK_SIZE {
for bx in 0..frame.res.x / BLOCK_SIZE {
let boff = ivec2(bx * BLOCK_SIZE, by * BLOCK_SIZE);
let mut best_d = Frame::compare_block(&frame, &self.last, boff, boff);
let mut best_off = ivec2(0, 0);
for granularity in [8, 4, 2, 1] {
for dir in [
ivec2(1, 0),
ivec2(1, 1),
ivec2(0, 1),
ivec2(-1, 1),
ivec2(-1, 0),
ivec2(-1, -1),
ivec2(0, -1),
ivec2(1, -1),
] {
let roff = boff + dir * granularity;
if roff.x >= 0
&& roff.y >= 0
&& roff.x + BLOCK_SIZE < frame.res.x
&& roff.y + BLOCK_SIZE < frame.res.y
{
let d = Frame::compare_block(&frame, &self.last, boff, roff);
if d < best_d {
best_d = d;
best_off = roff;
}
}
}
}
if best_d < 8 * 8 * 20 {
Frame::copy_block(&self.last, &mut frame, best_off, boff);
}
}
}
self.last = frame.clone();
frame.data
}
}
#[derive(Clone)]
struct Frame {
res: IVec2,
data: Vec<u8>,
}
impl Frame {
fn new(res: IVec2) -> Self {
Frame {
res,
data: vec![127; (res.x * res.y + res.x * res.y / 2) as usize],
}
}
fn copy_block(aframe: &Frame, bframe: &mut Frame, aoff: IVec2, boff: IVec2) {
assert_eq!(aframe.res, bframe.res);
let res = aframe.res;
// Luma
for y in 0..BLOCK_SIZE {
let ay_off = aoff.x + (y + aoff.y) * res.x;
let by_off = boff.x + (y + boff.y) * res.x;
bframe.data[by_off as usize..(by_off + BLOCK_SIZE) as usize]
.copy_from_slice(&aframe.data[ay_off as usize..(ay_off + BLOCK_SIZE) as usize]);
}
// Chroma
let uvplane_off = res.x * res.y;
for y in 0..BLOCK_SIZE / 2 {
let ay_off = uvplane_off + (aoff.x & !1) + (y + aoff.y / 2) * res.x;
let by_off = uvplane_off + (boff.x & !1) + (y + boff.y / 2) * res.x;
bframe.data[by_off as usize..(by_off + BLOCK_SIZE) as usize]
.copy_from_slice(&aframe.data[ay_off as usize..(ay_off + BLOCK_SIZE) as usize]);
}
}
fn compare_block(aframe: &Frame, bframe: &Frame, aoff: IVec2, boff: IVec2) -> u32 {
assert_eq!(aframe.res, bframe.res);
let res = aframe.res;
let mut diff = 0;
// Luma
for y in 0..BLOCK_SIZE {
let ay_off = aoff.x + (y + aoff.y) * res.x;
let by_off = boff.x + (y + boff.y) * res.x;
for x in 0..BLOCK_SIZE {
diff += aframe.data[(ay_off + x) as usize]
.abs_diff(bframe.data[(by_off + x) as usize]) as u32
}
}
// Chroma
let uvplane_off = res.x * res.y;
for y in 0..BLOCK_SIZE / 2 {
let ay_off = uvplane_off + (aoff.x & !1) + (y + aoff.y / 2) * res.x;
let by_off = uvplane_off + (boff.x & !1) + (y + boff.y / 2) * res.x;
for x in 0..BLOCK_SIZE {
diff += aframe.data[(ay_off + x) as usize]
.abs_diff(bframe.data[(by_off + x) as usize]) as u32;
}
}
diff
}
}
|