mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/apedec: Factor constant sign out of loop in long_filter_high_3800()
930 -> 850 cycles Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
eb768a75f8
commit
b2a3279dbe
@ -955,9 +955,20 @@ static void long_filter_high_3800(int32_t *buffer, int order, int shift, int len
|
||||
for (i = order; i < length; i++) {
|
||||
dotprod = 0;
|
||||
sign = APESIGN(buffer[i]);
|
||||
for (j = 0; j < order; j++) {
|
||||
dotprod += delayp[j] * (unsigned)coeffs[j];
|
||||
coeffs[j] += ((delayp[j] >> 31) | 1) * sign;
|
||||
if (sign == 1) {
|
||||
for (j = 0; j < order; j++) {
|
||||
dotprod += delayp[j] * (unsigned)coeffs[j];
|
||||
coeffs[j] += (delayp[j] >> 31) | 1;
|
||||
}
|
||||
} else if (sign == -1) {
|
||||
for (j = 0; j < order; j++) {
|
||||
dotprod += delayp[j] * (unsigned)coeffs[j];
|
||||
coeffs[j] -= (delayp[j] >> 31) | 1;
|
||||
}
|
||||
} else {
|
||||
for (j = 0; j < order; j++) {
|
||||
dotprod += delayp[j] * (unsigned)coeffs[j];
|
||||
}
|
||||
}
|
||||
buffer[i] -= (unsigned)(dotprod >> shift);
|
||||
delayp ++;
|
||||
|
Loading…
Reference in New Issue
Block a user