From: Andre Noll Date: Tue, 2 Apr 2013 15:02:09 +0000 (+0000) Subject: compress: Avoid PARA_ABS and PARA_MAX in inner loop. X-Git-Tag: v0.4.13~29^2~2 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=15a54f2ef3d6c33b15a1180332e63604e7cedc60;hp=15a54f2ef3d6c33b15a1180332e63604e7cedc60;ds=sidebyside compress: Avoid PARA_ABS and PARA_MAX in inner loop. These macros are type-safe and evaluate their arguments only once. However, they are also slow. For the compress filter we are dealing with ints and unsigned ints only, so the additional checks performed by the macros only slow things down. Getting rid of the macros reduces the running time of para_filter -f compress < foo.wav > /dev/null by approximately 8%. ---