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