Commit 469e2334 authored by Max Kellermann's avatar Max Kellermann

PcmUtils: remove unused clamp functions

parent 86a0f9cf
......@@ -87,18 +87,4 @@ PcmClamp(U x)
return T(x);
}
gcc_const
static inline int16_t
pcm_clamp_16(int x)
{
return PcmClamp<int16_t, int, 16>(x);
}
gcc_const
static inline int32_t
pcm_clamp_24(int x)
{
return PcmClamp<int32_t, int, 24>(x);
}
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment