1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-01-22 08:26:48 +00:00

Merge pull request #1684 from TomHarte/ChromaFloor

Add a floor for chroma, to reduce rainbow effect.
This commit is contained in:
Thomas Harte
2026-01-21 21:54:41 -05:00
committed by GitHub

View File

@@ -79,7 +79,7 @@ FilterGenerator::FilterPair FilterGenerator::demouldation_filter() {
SignalProcessing::KaiserBessel::filter<SignalProcessing::ScalarType::Float>(
MaxKernelSize,
samples_per_line_,
0.0f,
subcarrier_frequency_ * 0.05f,
subcarrier_frequency_ * 0.5f
)
* (decoding_path_ == DecodingPath::SVideo ? 2.0f : 1.0f);