From 78a7cdc08fcecaaf4da3643e28f90a4c24c94919 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Thu, 9 Oct 2025 01:51:03 +0900 Subject: [PATCH] minor fix --- video_encoder/encoder_tav.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video_encoder/encoder_tav.c b/video_encoder/encoder_tav.c index 89066d0..d7ced27 100644 --- a/video_encoder/encoder_tav.c +++ b/video_encoder/encoder_tav.c @@ -1209,7 +1209,7 @@ static void apply_grain_synthesis_encoder(tav_encoder_t *enc, float *coeffs, int // Uniform mode: use global quantiser noise_amplitude = quantiser * 0.5f; }*/ - float noise_amplitude = FCLAMP(quantiser, 0.0f, 32.0f) * 0.25f; + float noise_amplitude = FCLAMP(quantiser, 0.0f, 32.0f) * 0.5f; // Generate deterministic noise uint32_t rng_val = grain_synthesis_rng(frame_num, level + subband_type * 31 + 16777219, x, y);