public DspMeteringInfo(ref DSP_METERING_INFO info) : this() { SampleCount = info.numsamples; PeakLevel = info.peaklevel; RmsLevel = info.rmslevel; ChannelCount = info.numchannels; }
public static extern RESULT FMOD_DSP_GetMeteringInfo (IntPtr dsp, out DSP_METERING_INFO dspInfo);
public RESULT getMeteringInfo(out DSP_METERING_INFO info) { return FMOD_DSP_GetMeteringInfo(rawPtr, out info); }
public RESULT getMeteringInfo(DSP_METERING_INFO inputInfo, DSP_METERING_INFO outputInfo) { return FMOD5_DSP_GetMeteringInfo(rawPtr, inputInfo, outputInfo); }
public static extern RESULT FMOD_DSP_GetMeteringInfo (IntPtr dsp, ref DSP_METERING_INFO inputInfo, ref DSP_METERING_INFO outputInfo);
public RESULT getMeteringInfo(ref DSP_METERING_INFO inputInfo, ref DSP_METERING_INFO outputInfo) { return FMOD_DSP_GetMeteringInfo(rawPtr, ref inputInfo, ref outputInfo); }
public static extern RESULT FMOD5_DSP_GetMeteringInfo(IntPtr dsp, out DSP_METERING_INFO inputInfo, IntPtr zero);
public RESULT getMeteringInfo(out DSP_METERING_INFO inputInfo, IntPtr zero) { return(FMOD5_DSP_GetMeteringInfo(handle, out inputInfo, zero)); }
public RESULT getMeteringInfo(IntPtr zero, out DSP_METERING_INFO outputInfo) { return(FMOD5_DSP_GetMeteringInfo(handle, zero, out outputInfo)); }
public static extern RESULT FMOD5_DSP_GetMeteringInfo(IntPtr dsp, [Out] DSP_METERING_INFO inputInfo, [Out] DSP_METERING_INFO outputInfo);
public RESULT getMeteringInfo(DSP_METERING_INFO inputInfo, DSP_METERING_INFO outputInfo) { return(DSP.FMOD5_DSP_GetMeteringInfo(this.rawPtr, inputInfo, outputInfo)); }
public RESULT GetMeteringInfo(ref DSP_METERING_INFO info) { return FMOD_DSP_GetMeteringInfo(dspraw, ref info); }