Dennis Guse
Dennis Guse
Remove or replace all platform-dependent shell/batch/XXX scripts.
Use switch statements for readability.
Include `stdbool.h` instead of defining custom boolean values.
Modern compiler can do this on their own.
Almost every program implements parsing of command line parameters and also a help function. The code is not very complex but repetitive and documentation is not kept in sync. Using...
There are two separate implementations for g711iplc: C and CPP. The C implementation could be changed to provide a CPP interface and then the CPP version can be removed. Removes...
Some files contain comments such as: * begin function, * end function, or * end files. These are not really helpful and could be removed.
The code base contains different typedefs for numbers (Word16, Word32, FLOAT etc.), which are used inconsistently. The actual reason seemed to be compatibility to different platforms. Nowadays, this is properly...
Coding style for variables and function names is inconsistent in the code base. At least all should fulfill be lower case and too some degree self-descriptive.