gain = arg_to_scale (band->gain);
- if (band->freq / GST_AUDIO_FILTER (equ)->format.rate > 0.5)
+ if (band->freq / GST_AUDIO_FILTER (equ)->format.rate >= 0.5)
omega = M_PI;
- else if (band->freq < 0.0)
+ else if (band->freq <= 0.0)
omega = 0.0;
else
omega = 2.0 * M_PI * (band->freq / GST_AUDIO_FILTER (equ)->format.rate);
SecondOrderHistory ## TYPE *history, BIG_TYPE input) \
{ \
/* calculate output */ \
- BIG_TYPE output = floor (filter->a0 * input + \
+ BIG_TYPE output = filter->a0 * input + \
filter->a1 * history->x1 + filter->a2 * history->x2 + \
- filter->b1 * history->y1 + filter->b2 * history->y2 + 0.5); \
+ filter->b1 * history->y1 + filter->b2 * history->y2; \
/* update history */ \
history->y2 = history->y1; \
history->y1 = output; \
history++; \
} \
cur = CLAMP (cur, MIN_VAL, MAX_VAL); \
- *((TYPE *) data) = (TYPE) cur; \
+ *((TYPE *) data) = (TYPE) floor (cur); \
data += sizeof (TYPE); \
} \
} \
} \
}
-CREATE_OPTIMIZED_FUNCTIONS_INT (gint16, gint32, -32768, 32767);
+CREATE_OPTIMIZED_FUNCTIONS_INT (gint16, gfloat, -32768.0, 32767.0);
CREATE_OPTIMIZED_FUNCTIONS (gfloat);
CREATE_OPTIMIZED_FUNCTIONS (gdouble);