diff options
Diffstat (limited to 'bindings/csharp/ProxyAudioConsumer.cs')
-rw-r--r-- | bindings/csharp/ProxyAudioConsumer.cs | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/bindings/csharp/ProxyAudioConsumer.cs b/bindings/csharp/ProxyAudioConsumer.cs new file mode 100644 index 0000000..c4ef083 --- /dev/null +++ b/bindings/csharp/ProxyAudioConsumer.cs @@ -0,0 +1,67 @@ +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 1.3.39 + * + * Do not make changes to this file unless you know what you are doing--modify + * the SWIG interface file instead. + * ----------------------------------------------------------------------------- */ + +namespace org.doubango.tinyWRAP { + +using System; +using System.Runtime.InteropServices; + +public class ProxyAudioConsumer : ProxyPlugin { + private HandleRef swigCPtr; + + internal ProxyAudioConsumer(IntPtr cPtr, bool cMemoryOwn) : base(tinyWRAPPINVOKE.ProxyAudioConsumerUpcast(cPtr), cMemoryOwn) { + swigCPtr = new HandleRef(this, cPtr); + } + + internal static HandleRef getCPtr(ProxyAudioConsumer obj) { + return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; + } + + ~ProxyAudioConsumer() { + Dispose(); + } + + public override void Dispose() { + lock(this) { + if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { + swigCMemOwn = false; + tinyWRAPPINVOKE.delete_ProxyAudioConsumer(swigCPtr); + } + swigCPtr = new HandleRef(null, IntPtr.Zero); + GC.SuppressFinalize(this); + base.Dispose(); + } + } + + public uint pull(byte[] output, uint size) { + uint ret = tinyWRAPPINVOKE.ProxyAudioConsumer_pull(swigCPtr, output, size); + return ret; + } + + public bool reset() { + bool ret = tinyWRAPPINVOKE.ProxyAudioConsumer_reset(swigCPtr); + return ret; + } + + public void setCallback(ProxyAudioConsumerCallback _callback) { + tinyWRAPPINVOKE.ProxyAudioConsumer_setCallback(swigCPtr, ProxyAudioConsumerCallback.getCPtr(_callback)); + } + + public virtual ulong getMediaSessionId() { + ulong ret = tinyWRAPPINVOKE.ProxyAudioConsumer_getMediaSessionId(swigCPtr); + return ret; + } + + public static bool registerPlugin() { + bool ret = tinyWRAPPINVOKE.ProxyAudioConsumer_registerPlugin(); + return ret; + } + +} + +} |