# HG changeset patch # User reimar # Date 1263491433 0 # Node ID 7d46c481d04599d428958325dfc0c42809fffb7c # Parent a8620b001ed3b40fd5b1c90e786dc98c8412f333 Change code so it uses 2 adds instead of one FFABS. About 1% faster ff_ac3_bit_alloc_calc_psd on Intel Atom, overall speedup not measurable though. Should have a bigger effect on systems without cmov or with very slow cmov. diff -r a8620b001ed3 -r 7d46c481d045 ac3.c --- a/ac3.c Thu Jan 14 01:32:49 2010 +0000 +++ b/ac3.c Thu Jan 14 17:50:33 2010 +0000 @@ -112,9 +112,10 @@ int v = psd[bin++]; int band_end = FFMIN(band_start_tab[band+1], end); for (; bin < band_end; bin++) { + int max = FFMAX(v, psd[bin]); /* logadd */ - int adr = FFMIN(FFABS(v - psd[bin]) >> 1, 255); - v = FFMAX(v, psd[bin]) + ff_ac3_log_add_tab[adr]; + int adr = FFMIN(max - ((v + psd[bin] + 1) >> 1), 255); + v = max + ff_ac3_log_add_tab[adr]; } band_psd[band++] = v; } while (end > band_start_tab[band]);