audioconvert: optimize lr4 handling

Make an SSE optimized LR4 function and one that handles 2 LR4s in
parallel.
This commit is contained in:
Wim Taymans 2024-10-15 12:20:04 +02:00
parent fec3730489
commit ad84c45c0c
7 changed files with 160 additions and 59 deletions

View file

@ -20,7 +20,6 @@ struct lr4 {
struct biquad bq;
float x1, x2;
float y1, y2;
float z1, z2;
bool active;
};