From cf2ed48d21ddbc32bda262064480e88e69dc031a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 4 Apr 2022 22:37:31 +0200 Subject: Cleanup: move some methods from util to maths_util. --- src/lib/util.h | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/lib/util.h') diff --git a/src/lib/util.h b/src/lib/util.h index bd9eaf96e..fd11fffbd 100644 --- a/src/lib/util.h +++ b/src/lib/util.h @@ -51,10 +51,6 @@ namespace dcp { class SoundAsset; } -#ifndef M_PI -#define M_PI (3.14159265358979323846) -#endif - /** The maximum number of audio channels that we can have in a DCP */ #define MAX_DCP_AUDIO_CHANNELS 16 /** Message broadcast to find possible encoding servers */ @@ -152,15 +148,4 @@ list_to_vector (std::list v) return l; } -extern double db_to_linear (double db); -extern double linear_to_db (double linear); - - -template -T clamp (T val, T minimum, T maximum) -{ - return std::max(std::min(val, maximum), minimum); -} - - #endif -- cgit v1.2.3