summaryrefslogtreecommitdiffstats
path: root/bindings/csharp/ProxyVideoProducerCallback.cs
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/csharp/ProxyVideoProducerCallback.cs')
-rw-r--r--bindings/csharp/ProxyVideoProducerCallback.cs116
1 files changed, 116 insertions, 0 deletions
diff --git a/bindings/csharp/ProxyVideoProducerCallback.cs b/bindings/csharp/ProxyVideoProducerCallback.cs
new file mode 100644
index 0000000..7deb2a7
--- /dev/null
+++ b/bindings/csharp/ProxyVideoProducerCallback.cs
@@ -0,0 +1,116 @@
+/* ----------------------------------------------------------------------------
+ * 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 ProxyVideoProducerCallback : IDisposable {
+ private HandleRef swigCPtr;
+ protected bool swigCMemOwn;
+
+ internal ProxyVideoProducerCallback(IntPtr cPtr, bool cMemoryOwn) {
+ swigCMemOwn = cMemoryOwn;
+ swigCPtr = new HandleRef(this, cPtr);
+ }
+
+ internal static HandleRef getCPtr(ProxyVideoProducerCallback obj) {
+ return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
+ }
+
+ ~ProxyVideoProducerCallback() {
+ Dispose();
+ }
+
+ public virtual void Dispose() {
+ lock(this) {
+ if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) {
+ swigCMemOwn = false;
+ tinyWRAPPINVOKE.delete_ProxyVideoProducerCallback(swigCPtr);
+ }
+ swigCPtr = new HandleRef(null, IntPtr.Zero);
+ GC.SuppressFinalize(this);
+ }
+ }
+
+ public ProxyVideoProducerCallback() : this(tinyWRAPPINVOKE.new_ProxyVideoProducerCallback(), true) {
+ SwigDirectorConnect();
+ }
+
+ public virtual int prepare(int width, int height, int fps) {
+ int ret = ((this.GetType() == typeof(ProxyVideoProducerCallback)) ? tinyWRAPPINVOKE.ProxyVideoProducerCallback_prepare(swigCPtr, width, height, fps) : tinyWRAPPINVOKE.ProxyVideoProducerCallback_prepareSwigExplicitProxyVideoProducerCallback(swigCPtr, width, height, fps));
+ return ret;
+ }
+
+ public virtual int start() {
+ int ret = ((this.GetType() == typeof(ProxyVideoProducerCallback)) ? tinyWRAPPINVOKE.ProxyVideoProducerCallback_start(swigCPtr) : tinyWRAPPINVOKE.ProxyVideoProducerCallback_startSwigExplicitProxyVideoProducerCallback(swigCPtr));
+ return ret;
+ }
+
+ public virtual int pause() {
+ int ret = ((this.GetType() == typeof(ProxyVideoProducerCallback)) ? tinyWRAPPINVOKE.ProxyVideoProducerCallback_pause(swigCPtr) : tinyWRAPPINVOKE.ProxyVideoProducerCallback_pauseSwigExplicitProxyVideoProducerCallback(swigCPtr));
+ return ret;
+ }
+
+ public virtual int stop() {
+ int ret = ((this.GetType() == typeof(ProxyVideoProducerCallback)) ? tinyWRAPPINVOKE.ProxyVideoProducerCallback_stop(swigCPtr) : tinyWRAPPINVOKE.ProxyVideoProducerCallback_stopSwigExplicitProxyVideoProducerCallback(swigCPtr));
+ return ret;
+ }
+
+ private void SwigDirectorConnect() {
+ if (SwigDerivedClassHasMethod("prepare", swigMethodTypes0))
+ swigDelegate0 = new SwigDelegateProxyVideoProducerCallback_0(SwigDirectorprepare);
+ if (SwigDerivedClassHasMethod("start", swigMethodTypes1))
+ swigDelegate1 = new SwigDelegateProxyVideoProducerCallback_1(SwigDirectorstart);
+ if (SwigDerivedClassHasMethod("pause", swigMethodTypes2))
+ swigDelegate2 = new SwigDelegateProxyVideoProducerCallback_2(SwigDirectorpause);
+ if (SwigDerivedClassHasMethod("stop", swigMethodTypes3))
+ swigDelegate3 = new SwigDelegateProxyVideoProducerCallback_3(SwigDirectorstop);
+ tinyWRAPPINVOKE.ProxyVideoProducerCallback_director_connect(swigCPtr, swigDelegate0, swigDelegate1, swigDelegate2, swigDelegate3);
+ }
+
+ private bool SwigDerivedClassHasMethod(string methodName, Type[] methodTypes) {
+ System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance, null, methodTypes, null);
+ bool hasDerivedMethod = methodInfo.DeclaringType.IsSubclassOf(typeof(ProxyVideoProducerCallback));
+ return hasDerivedMethod;
+ }
+
+ private int SwigDirectorprepare(int width, int height, int fps) {
+ return prepare(width, height, fps);
+ }
+
+ private int SwigDirectorstart() {
+ return start();
+ }
+
+ private int SwigDirectorpause() {
+ return pause();
+ }
+
+ private int SwigDirectorstop() {
+ return stop();
+ }
+
+ public delegate int SwigDelegateProxyVideoProducerCallback_0(int width, int height, int fps);
+ public delegate int SwigDelegateProxyVideoProducerCallback_1();
+ public delegate int SwigDelegateProxyVideoProducerCallback_2();
+ public delegate int SwigDelegateProxyVideoProducerCallback_3();
+
+ private SwigDelegateProxyVideoProducerCallback_0 swigDelegate0;
+ private SwigDelegateProxyVideoProducerCallback_1 swigDelegate1;
+ private SwigDelegateProxyVideoProducerCallback_2 swigDelegate2;
+ private SwigDelegateProxyVideoProducerCallback_3 swigDelegate3;
+
+ private static Type[] swigMethodTypes0 = new Type[] { typeof(int), typeof(int), typeof(int) };
+ private static Type[] swigMethodTypes1 = new Type[] { };
+ private static Type[] swigMethodTypes2 = new Type[] { };
+ private static Type[] swigMethodTypes3 = new Type[] { };
+}
+
+}
OpenPOWER on IntegriCloud