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