summaryrefslogtreecommitdiffstats
path: root/baseline/source/adpcm_enc/ChangeLog.txt
diff options
context:
space:
mode:
authorJoshua Bakita <bakitajoshua@gmail.com>2019-10-07 19:13:39 -0400
committerJoshua Bakita <bakitajoshua@gmail.com>2019-10-07 19:13:39 -0400
commit386b7d3366f1359a265da207a9cafa3edf553b64 (patch)
treec76120c2c138faed822e4ae386be6ef22a738a78 /baseline/source/adpcm_enc/ChangeLog.txt
parent54a3f7091a2146b29c73a6fdc4b62a5c4ad7a3d8 (diff)
Reorganize and commit all the modified TACLeBench code and run scripts
Diffstat (limited to 'baseline/source/adpcm_enc/ChangeLog.txt')
-rw-r--r--baseline/source/adpcm_enc/ChangeLog.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/baseline/source/adpcm_enc/ChangeLog.txt b/baseline/source/adpcm_enc/ChangeLog.txt
new file mode 100644
index 0000000..0029192
--- /dev/null
+++ b/baseline/source/adpcm_enc/ChangeLog.txt
@@ -0,0 +1,34 @@
1File: adpcm_enc.c
2Original provenience: C Algorithms for Real-Time DSP by P. M. Embree
3
42016-03-07:
5- Rename adpcm_encode to adpcm_enc
6- Add generic TACLeBench header
7- Remove #define Seoul_Mate around main
8- Remove swedish comment after setting frequency to 2000
9- Introduce adpcm_enc_init, adpcm_main, adpcm_return
10- Make test_data and compressed global variables
112016-04-26:
12- Remove forward declarations of functions gaussian, iir_filter, fir_filter,
13 fft, setup_codec, key_down, int_enable, int_disable, flags, getinput,
14 sendout, which are never defined
15- Remove commented declarations of invqxl and invqah
16- Remove unused structure COMPLEX
17- Remove prefix my_ from functions names my_fabs, my_cos, my_sin, my_abs
18- Prefix all global symbols with benchmark name
19- Remove variables accumc and accumd together with their initialization loop,
20 since they are never read
21- Remove unused variables xs and xd
22- Remove unused array wl_table
23- Remove unused variable rs and rh
24- Remove unused variables and their initializations (only required for decoder):
25 ilr, yl, rl, dec_deth, dec_del_bpl, dec_plt, dec_plt1, dec_plt2, dec_szl,
26 dec_spl, dec_sl, dec_rlt1, dec_rlt2, dec_rlt, dec_al1, dec_al2, dl, dec_nbl,
27 dec_yh, dec_dh, dec_nbh, dec_rh2, dec_ah1, dec_ah2, dec_ph, dec_sph, dec_sh,
28 dec_rh, dec_ph1, dec_ph2,
29- Add addition on each element of input data with volatile variable to
30 avoid constant-propagation optimizations through the compoiler
31- Add computation of check sum
32- Add return return statement: zero if check sum is correct
332016-05-20:
34- Apply code formatting with astyle