public static unsafe void SetOnAudioSamplesReady(global::Org.Webrtc.Voiceengine.WebRtcAudioRecord.IWebRtcAudioRecordSamplesReadyCallback @callback)
        {
            const string __id = "setOnAudioSamplesReady.(Lorg/webrtc/voiceengine/WebRtcAudioRecord$WebRtcAudioRecordSamplesReadyCallback;)V";

            try {
                JniArgumentValue *__args = stackalloc JniArgumentValue [1];
                __args [0] = new JniArgumentValue((@callback == null) ? IntPtr.Zero : ((global::Java.Lang.Object)@callback).Handle);
                _members.StaticMethods.InvokeVoidMethod(__id, __args);
            } finally {
            }
        }
 static void n_OnWebRtcAudioRecordSamplesReady_Lorg_webrtc_voiceengine_WebRtcAudioRecord_AudioSamples_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Org.Webrtc.Voiceengine.WebRtcAudioRecord.IWebRtcAudioRecordSamplesReadyCallback __this = global::Java.Lang.Object.GetObject <global::Org.Webrtc.Voiceengine.WebRtcAudioRecord.IWebRtcAudioRecordSamplesReadyCallback> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Org.Webrtc.Voiceengine.WebRtcAudioRecord.AudioSamples p0 = global::Java.Lang.Object.GetObject <global::Org.Webrtc.Voiceengine.WebRtcAudioRecord.AudioSamples> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.OnWebRtcAudioRecordSamplesReady(p0);
 }