FMOD_DSP_METERING_INFO

FMOD Studio API

Firelight Technologies FMOD Studio API

FMOD_DSP_METERING_INFO

DSP metering info used for retrieving metering info with DSP::getMeteringInfo

C/C++ Syntax

typedef struct {
  int numsamples;
  float peaklevel[32];
  float rmslevel[32];
  short numchannels;
} FMOD_DSP_METERING_INFO;

JavaScript Syntax

struct FMOD_DSP_METERING_INFO
{
  numsamples,
  peaklevel,
  rmslevel,
  numchannels,
};

Members

numsamples

[r] The number of samples considered for this metering info.

peaklevel

[r] The peak level per channel.

rmslevel

[r] The rms level per channel.

numchannels

[r] Number of channels.

Remarks

Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
Members marked with [w] mean the variable can be written to. The user can set the value.

JavaScript only :

Not all fields are currently supported or may not work as expected at this time. To initialize an new instance in javascript use "FMOD.DSP_METERING_INFO()", no 'new' keyword is required.

See Also




Version 1.10.03 Built on Feb 1, 2018