mirror of
https://github.com/mpv-player/mpv
synced 2024-11-18 21:16:10 +01:00
af_volnorm: fix output range with float input
af_volnorm can process either int16_t or float audio data. The float version used 0 to INT_MAX as full value range, when it should be 0 to 1. This effectively disabled the filter (due to all input being considered to fall in the silence range). Fix. Reported by Tobias Jacobi <liquid.acid@gmx.net>.
This commit is contained in:
parent
e0d9ec60ad
commit
3f7526d641
@ -51,7 +51,7 @@
|
||||
// Silence level
|
||||
// FIXME: should be relative to the level of the samples
|
||||
#define SIL_S16 (SHRT_MAX * 0.01)
|
||||
#define SIL_FLOAT (INT_MAX * 0.01) // FIXME
|
||||
#define SIL_FLOAT 0.01
|
||||
|
||||
// smooth must be in ]0.0, 1.0[
|
||||
#define SMOOTH_MUL 0.06
|
||||
@ -106,7 +106,7 @@ static int control(struct af_instance* af, int cmd, void* arg)
|
||||
return AF_ERROR;
|
||||
s->method = i-1;
|
||||
s->mid_s16 = ((float)SHRT_MAX) * target;
|
||||
s->mid_float = ((float)INT_MAX) * target;
|
||||
s->mid_float = target;
|
||||
return AF_OK;
|
||||
}
|
||||
}
|
||||
@ -333,7 +333,7 @@ static int af_open(struct af_instance* af){
|
||||
((af_volnorm_t*)af->setup)->lastavg = ((float)SHRT_MAX) * DEFAULT_TARGET;
|
||||
((af_volnorm_t*)af->setup)->idx = 0;
|
||||
((af_volnorm_t*)af->setup)->mid_s16 = ((float)SHRT_MAX) * DEFAULT_TARGET;
|
||||
((af_volnorm_t*)af->setup)->mid_float = ((float)INT_MAX) * DEFAULT_TARGET;
|
||||
((af_volnorm_t*)af->setup)->mid_float = DEFAULT_TARGET;
|
||||
for (i = 0; i < NSAMPLES; i++)
|
||||
{
|
||||
((af_volnorm_t*)af->setup)->mem[i].len = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user