|
|
@@ -62,6 +62,9 @@ public: |
|
|
/** Multiplies each of the destination values by a fixed multiplier. */
|
|
|
/** Multiplies each of the destination values by a fixed multiplier. */
|
|
|
static void JUCE_CALLTYPE multiply (float* dest, float multiplier, int numValues) noexcept;
|
|
|
static void JUCE_CALLTYPE multiply (float* dest, float multiplier, int numValues) noexcept;
|
|
|
|
|
|
|
|
|
|
|
|
/** Copies a source vector to a destination, negating each value. */
|
|
|
|
|
|
static void JUCE_CALLTYPE negate (float* dest, const float* src, int numValues) noexcept;
|
|
|
|
|
|
|
|
|
/** Converts a stream of integers to floats, multiplying each one by the given multiplier. */
|
|
|
/** Converts a stream of integers to floats, multiplying each one by the given multiplier. */
|
|
|
static void JUCE_CALLTYPE convertFixedToFloat (float* dest, const int* src, float multiplier, int numValues) noexcept;
|
|
|
static void JUCE_CALLTYPE convertFixedToFloat (float* dest, const int* src, float multiplier, int numValues) noexcept;
|
|
|
|
|
|
|
|
|
|