/* ---------------------------------------------------------------------------- * 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 ProxyAudioProducer : ProxyPlugin { private HandleRef swigCPtr; internal ProxyAudioProducer(IntPtr cPtr, bool cMemoryOwn) : base(tinyWRAPPINVOKE.ProxyAudioProducerUpcast(cPtr), cMemoryOwn) { swigCPtr = new HandleRef(this, cPtr); } internal static HandleRef getCPtr(ProxyAudioProducer obj) { return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; } ~ProxyAudioProducer() { Dispose(); } public override void Dispose() { lock(this) { if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { swigCMemOwn = false; tinyWRAPPINVOKE.delete_ProxyAudioProducer(swigCPtr); } swigCPtr = new HandleRef(null, IntPtr.Zero); GC.SuppressFinalize(this); base.Dispose(); } } public int push(byte[] buffer, uint size) { int ret = tinyWRAPPINVOKE.ProxyAudioProducer_push(swigCPtr, buffer, size); return ret; } public void setCallback(ProxyAudioProducerCallback _callback) { tinyWRAPPINVOKE.ProxyAudioProducer_setCallback(swigCPtr, ProxyAudioProducerCallback.getCPtr(_callback)); } public virtual ulong getMediaSessionId() { ulong ret = tinyWRAPPINVOKE.ProxyAudioProducer_getMediaSessionId(swigCPtr); return ret; } public static bool registerPlugin() { bool ret = tinyWRAPPINVOKE.ProxyAudioProducer_registerPlugin(); return ret; } } }