Lines Matching refs:G_MAXINT16
345 glong thr_p = filter->threshold * G_MAXINT16; in gst_audio_dynamic_transform_hard_knee_compressor_int()
361 *data++ = (gint16) CLAMP (val, G_MININT16, G_MAXINT16); in gst_audio_dynamic_transform_hard_knee_compressor_int()
394 glong thr_p = filter->threshold * G_MAXINT16; in gst_audio_dynamic_transform_soft_knee_compressor_int()
417 g_assert (thr_p - G_MAXINT16 != 0); in gst_audio_dynamic_transform_soft_knee_compressor_int()
420 a_p = (1 - filter->ratio) / (2 * (thr_p - G_MAXINT16)); in gst_audio_dynamic_transform_soft_knee_compressor_int()
421 b_p = (filter->ratio * thr_p - G_MAXINT16) / (thr_p - G_MAXINT16); in gst_audio_dynamic_transform_soft_knee_compressor_int()
435 *data++ = (gint16) CLAMP (val, G_MININT16, G_MAXINT16); in gst_audio_dynamic_transform_soft_knee_compressor_int()
499 glong thr_p = filter->threshold * G_MAXINT16; in gst_audio_dynamic_transform_hard_knee_expander_int()
531 *data++ = (gint16) CLAMP (val, G_MININT16, G_MAXINT16); in gst_audio_dynamic_transform_hard_knee_expander_int()
574 glong thr_p = filter->threshold * G_MAXINT16; in gst_audio_dynamic_transform_soft_knee_expander_int()
627 *data++ = (gint16) CLAMP (val, G_MININT16, G_MAXINT16); in gst_audio_dynamic_transform_soft_knee_expander_int()