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