-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAC_Decode.m
57 lines (44 loc) · 1.51 KB
/
AC_Decode.m
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
function ac_coeff = AC_Decode(AC, ACTAB, coeff_length)
%AC_Decode: decoding AC string
%ACTAB: AC coefficients
%coeff_length: length of original ac coefficient
%ac_coeff: output of original ac_coeff
ZRL = [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1];
EOB = [1, 0, 1, 0];
ac_string = split(AC, '');
ac_list = str2double(ac_string(2:end - 1))';
ac_coeff = zeros(63, coeff_length);
n = 1;
index = 0;
while n <= coeff_length
if all(ac_list(1:4) == EOB)
n = n + 1;
index = 0;
ac_list(1:4) = [];
elseif length(ac_list) > 11 && all(ac_list(1:11) == ZRL)
index = index + 16;
ac_list(1:11) = [];
else
for i = 1:size(ACTAB, 1)
L = ACTAB(i, 3);
if L > length(ac_list)
continue;
end
if all(ac_list(1:L) == ACTAB(i, 4:L + 3))
ac_run = ACTAB(i, 1);
ac_size = ACTAB(i, 2);
ac_list(1:L) = [];
break;
end
end
index = index + ac_run + 1;
amplitude = ac_list(1:ac_size);
if amplitude(1) == 1
ac_coeff(index, n) = bin2dec(num2str(amplitude, '%d'));
else
ac_coeff(index, n) = -bin2dec(num2str(~amplitude, '%d'));
end
ac_list(1:ac_size) = [];
end
end
end