summaryrefslogtreecommitdiffstats
path: root/all_pairs/source/cjpeg_transupp/ChangeLog.txt
diff options
context:
space:
mode:
Diffstat (limited to 'all_pairs/source/cjpeg_transupp/ChangeLog.txt')
-rw-r--r--all_pairs/source/cjpeg_transupp/ChangeLog.txt36
1 files changed, 36 insertions, 0 deletions
diff --git a/all_pairs/source/cjpeg_transupp/ChangeLog.txt b/all_pairs/source/cjpeg_transupp/ChangeLog.txt
new file mode 100644
index 0000000..df4383c
--- /dev/null
+++ b/all_pairs/source/cjpeg_transupp/ChangeLog.txt
@@ -0,0 +1,36 @@
1File: cjpeg_transupp.c
2Original provenience: MediaBench II benchmark suite,
3 http://euler.slu.edu/~fritts/mediabench (mirror)
4
52015-11-03:
6- Removed original header comment, replaced by TACLeBench header.
7- Removed unnecessary preprocessor macros.
8- Removed unnecessary code parts, simplified header files and include
9 relationships.
10- Added prefix "cjpeg_transupp" to all global symbols.
11- Added explicit forward declarations of functions.
12- Replaced initialization code by TACLeBench-compliant initialization code.
13- Added new function cjpeg_transupp_return producing a checksum as return value.
14- Added new function cjpeg_transupp_main according to TACLeBench guidelines.
15 cjpeg_transupp_main is annotated as entry-point for timing analysis.
16- Applied code formatting according to the following rules
17 - Lines shall not be wider than 80 characters; whenever possible, appropriate
18 line breaks shall be inserted to keep lines below 80 characters
19 - Indentation is done using whitespaces only, no tabs. Code is indented by
20 two whitespaces
21 - Two empty lines are put between any two functions
22 - In non-empty lists or index expressions, opening '(' and '[' are followed by
23 one whitespace, closing ')' and ']' are preceded by one whitespace
24 - In comma- or colon-separated argument lists, one whitespace is put after
25 each comma/colon
26 - Names of functions and global variables all start with a benchmark-specific
27 prefix (here: bs_) followed by lowercase letter (e.g., bs_square)
28 - For pointer types, one whitespace is put before the '*'
29 - Operators within expressions shall be preceded and followed by one
30 whitespace
31 - Code of then- and else-parts of if-then-else statements shall be put in
32 separate lines, not in the same lines as the if-condition or the keyword
33 "else"
34 - Opening braces '{' denoting the beginning of code for some if-else or loop
35 body shall be put at the end of the same line where the keywords "if",
36 "else", "for", "while" etc. occur