From 34afbd6ca21d2b960573d787e6eae46fa86b200e Mon Sep 17 00:00:00 2001 From: skal Date: Thu, 5 Mar 2026 22:55:56 +0100 Subject: style: run clang-format to adhere to coding style --- src/audio/ola.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/audio/ola.h') diff --git a/src/audio/ola.h b/src/audio/ola.h index 3dbc368..2d6267e 100644 --- a/src/audio/ola.h +++ b/src/audio/ola.h @@ -7,8 +7,7 @@ // Returns number of OLA frames for n_samples PCM input. static inline int ola_num_frames(int n_samples) { - return (n_samples > DCT_SIZE) ? (n_samples - DCT_SIZE) / OLA_HOP_SIZE + 1 - : 1; + return (n_samples > DCT_SIZE) ? (n_samples - DCT_SIZE) / OLA_HOP_SIZE + 1 : 1; } // Hann-windowed FDCT with 50% overlap (analysis). -- cgit v1.2.3