JUCE v8.0.9
JUCE API
 
Loading...
Searching...
No Matches
juce::Decibels Class Reference

This class contains some helpful static methods for dealing with decibel values. More...

#include <juce_Decibels.h>

Static Public Member Functions

template<typename Type >
static Type decibelsToGain (Type decibels, Type minusInfinityDb=Type(defaultMinusInfinitydB))
 Converts a dBFS value to its equivalent gain level.
 
template<typename Type >
static Type gainToDecibels (Type gain, Type minusInfinityDb=Type(defaultMinusInfinitydB))
 Converts a gain level into a dBFS value.
 
template<typename Type >
static Type gainWithLowerBound (Type gain, Type lowerBoundDb)
 Restricts a gain value based on a lower bound specified in dBFS.
 
template<typename Type >
static String toString (Type decibels, int decimalPlaces=2, Type minusInfinityDb=Type(defaultMinusInfinitydB), bool shouldIncludeSuffix=true, StringRef customMinusInfinityString={})
 Converts a decibel reading to a string.
 

Private Types

enum  { defaultMinusInfinitydB = -100 }
 

Private Member Functions

 Decibels ()=delete
 

Detailed Description

This class contains some helpful static methods for dealing with decibel values.

@tags{Audio}

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
private
Enumerator
defaultMinusInfinitydB 

Constructor & Destructor Documentation

◆ Decibels()

juce::Decibels::Decibels ( )
privatedelete

Member Function Documentation

◆ decibelsToGain()

template<typename Type >
static Type juce::Decibels::decibelsToGain ( Type  decibels,
Type  minusInfinityDb = Type (defaultMinusInfinitydB) 
)
inlinestatic

Converts a dBFS value to its equivalent gain level.

A gain of 1.0 = 0 dB, and lower gains map onto negative decibel values. Any decibel value lower than minusInfinityDb will return a gain of 0.

Referenced by gainWithLowerBound(), and juce::dsp::LogRampedValue< FloatType >::setLogParameters().

◆ gainToDecibels()

template<typename Type >
static Type juce::Decibels::gainToDecibels ( Type  gain,
Type  minusInfinityDb = Type (defaultMinusInfinitydB) 
)
inlinestatic

Converts a gain level into a dBFS value.

A gain of 1.0 = 0 dB, and lower gains map onto negative decibel values. If the gain is 0 (or negative), then the method will return the value provided as minusInfinityDb.

References juce::jmax().

◆ gainWithLowerBound()

template<typename Type >
static Type juce::Decibels::gainWithLowerBound ( Type  gain,
Type  lowerBoundDb 
)
inlinestatic

Restricts a gain value based on a lower bound specified in dBFS.

This is useful if you want to make sure a gain value never reaches zero.

References decibelsToGain(), jassert, and juce::jmax().

◆ toString()

template<typename Type >
static String juce::Decibels::toString ( Type  decibels,
int  decimalPlaces = 2,
Type  minusInfinityDb = Type (defaultMinusInfinitydB),
bool  shouldIncludeSuffix = true,
StringRef  customMinusInfinityString = {} 
)
inlinestatic

Converts a decibel reading to a string.

By default the returned string will have the 'dB' suffix added, but this can be removed by setting the shouldIncludeSuffix argument to false. If a customMinusInfinityString argument is provided this will be returned if the value is lower than minusInfinityDb, otherwise the return value will be "-INF".


The documentation for this class was generated from the following file: