From e11dfb3f09fe63463cc931b0f52f60ebf4830cc8 Mon Sep 17 00:00:00 2001 From: Agent45 Date: Sat, 1 Nov 2025 22:34:33 +0000 Subject: [PATCH] trim trailing whitespace in aacpsy.c --- libavcodec/aacpsy.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/aacpsy.c b/libavcodec/aacpsy.c index b5e5be9f78..fb6ff75795 100644 --- a/libavcodec/aacpsy.c +++ b/libavcodec/aacpsy.c @@ -913,7 +913,6 @@ static FFPsyWindowInfo psy_lame_window(FFPsyContext *ctx, const float *audio, p = FFMAX(p, fabsf(*pf)); pch->prev_energy_subshort[i] = energy_subshort[i + PSY_LAME_NUM_SUBBLOCKS] = p; energy_short[1 + i / PSY_LAME_NUM_SUBBLOCKS] += p; - /* NOTE: The indexes below are [i + 3 - 2] in the LAME source. Compare each sub-block to sub-block - 2 */ if (p > energy_subshort[i + PSY_LAME_NUM_SUBBLOCKS - 2]) p = p / energy_subshort[i + PSY_LAME_NUM_SUBBLOCKS - 2];