From 7945242fa84935f84faceb0c67492cc2c1c24ca8 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 18 Nov 2020 00:43:56 +0100 Subject: [PATCH] - removed some redundant utility functions. --- source/blood/src/common_game.h | 9 --------- source/core/movie/playmve.cpp | 13 ++----------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/source/blood/src/common_game.h b/source/blood/src/common_game.h index bb0750123..5568dae62 100644 --- a/source/blood/src/common_game.h +++ b/source/blood/src/common_game.h @@ -534,15 +534,6 @@ inline int ClipRange(int a, int b, int c) return a; } -inline float ClipRangeF(float a, float b, float c) -{ - if (a < b) - return b; - if (a > c) - return c; - return a; -} - inline int interpolate(int a, int b, int c) { return a+mulscale16(b-a,c); diff --git a/source/core/movie/playmve.cpp b/source/core/movie/playmve.cpp index 97a311f15..03f77f378 100644 --- a/source/core/movie/playmve.cpp +++ b/source/core/movie/playmve.cpp @@ -49,6 +49,7 @@ #include "v_draw.h" #include "s_music.h" #include "cmdlib.h" +#include "templates.h" @@ -91,16 +92,6 @@ static const int16_t delta_table[] = { // macro to fetch 16-bit little-endian words from a bytestream #define LE_16(x) ((*x) | ((*(x+1)) << 8)) -static int ClipRange(int val, int min, int max) -{ - if (val < min) - return min; - else if (val > max) - return max; - else - return val; -} - static bool StreamCallbackFunc(SoundStream* stream, void* buff, int len, void* userdata) { InterplayDecoder* pId = (InterplayDecoder*)userdata; @@ -380,7 +371,7 @@ bool InterplayDecoder::RunFrame(uint64_t clock) for (; i < (nSamples / 2); i++) { predictor[ch] += delta_table[fr.ReadUInt8()]; - predictor[ch] = ClipRange(predictor[ch], -32768, 32768); + predictor[ch] = clamp(predictor[ch], -32768, 32768); audio.samples[audio.nWrite++] = predictor[ch]; if (audio.nWrite >= countof(audio.samples)) audio.nWrite = 0;