public DspMeteringInfo(ref DSP_METERING_INFO info)
     : this()
 {
     SampleCount = info.numsamples;
     PeakLevel = info.peaklevel;
     RmsLevel = info.rmslevel;
     ChannelCount = info.numchannels;
 }
Exemple #2
0
 public static extern RESULT FMOD_DSP_GetMeteringInfo            (IntPtr dsp, out DSP_METERING_INFO dspInfo);
Exemple #3
0
 public RESULT getMeteringInfo(out DSP_METERING_INFO info)
 {
     return FMOD_DSP_GetMeteringInfo(rawPtr, out info);
 }
Exemple #4
0
        public RESULT getMeteringInfo(DSP_METERING_INFO inputInfo, DSP_METERING_INFO outputInfo)
		{
			return FMOD5_DSP_GetMeteringInfo(rawPtr, inputInfo, outputInfo);
		}
Exemple #5
0
 public static extern RESULT FMOD_DSP_GetMeteringInfo            (IntPtr dsp, ref DSP_METERING_INFO inputInfo, ref DSP_METERING_INFO outputInfo);
Exemple #6
0
 public RESULT getMeteringInfo(ref DSP_METERING_INFO inputInfo, ref DSP_METERING_INFO outputInfo)
 {
     return FMOD_DSP_GetMeteringInfo(rawPtr, ref inputInfo, ref outputInfo);
 }
Exemple #7
0
 public static extern RESULT FMOD5_DSP_GetMeteringInfo(IntPtr dsp, out DSP_METERING_INFO inputInfo, IntPtr zero);
Exemple #8
0
 public RESULT getMeteringInfo(out DSP_METERING_INFO inputInfo, IntPtr zero)
 {
     return(FMOD5_DSP_GetMeteringInfo(handle, out inputInfo, zero));
 }
Exemple #9
0
 public RESULT getMeteringInfo(IntPtr zero, out DSP_METERING_INFO outputInfo)
 {
     return(FMOD5_DSP_GetMeteringInfo(handle, zero, out outputInfo));
 }
Exemple #10
0
 public static extern RESULT FMOD5_DSP_GetMeteringInfo(IntPtr dsp, [Out] DSP_METERING_INFO inputInfo, [Out] DSP_METERING_INFO outputInfo);
Exemple #11
0
 public RESULT getMeteringInfo(DSP_METERING_INFO inputInfo, DSP_METERING_INFO outputInfo)
 {
     return(DSP.FMOD5_DSP_GetMeteringInfo(this.rawPtr, inputInfo, outputInfo));
 }
Exemple #12
0
 public RESULT GetMeteringInfo(ref DSP_METERING_INFO info)
 {
     return FMOD_DSP_GetMeteringInfo(dspraw, ref info);
 }