You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/af_apsyclip: fix peak overestimation
Ignore more samples that are near the edge of the block. The reason is that the filtering tends to cause these samples to go above the window more than the samples near the middle. If these samples are included in the unwindowed peak estimation, the peak can be overestimated. Because the block is windowed again before overlapping, overshoots near the edge of the block are not very important. 0.1 is the value from the version originally contributed to calf. Signed-off-by: Jason Jang <jcj83429@gmail.com>
This commit is contained in:
@@ -87,7 +87,7 @@ static void generate_hann_window(float *window, float *inv_window, int size)
|
|||||||
|
|
||||||
window[i] = value;
|
window[i] = value;
|
||||||
// 1/window to calculate unwindowed peak.
|
// 1/window to calculate unwindowed peak.
|
||||||
inv_window[i] = value > 0.01f ? 1.f / value : 0.f;
|
inv_window[i] = value > 0.1f ? 1.f / value : 0.f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user