Example #1
0
 static void n_ScanQPel_IIarrayI(IntPtr jnienv, IntPtr native__this, int p0, int p1, IntPtr native_p2)
 {
     global::Org.Jcodec.Codecs.H264.Decode.Interpolator __this = global::Java.Lang.Object.GetObject <global::Org.Jcodec.Codecs.H264.Decode.Interpolator> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     int[] p2 = (int[])JNIEnv.GetArray(native_p2, JniHandleOwnership.DoNotTransfer, typeof(int));
     __this.ScanQPel(p0, p1, p2);
     if (p2 != null)
     {
         JNIEnv.CopyArray(p2, native_p2);
     }
 }
Example #2
0
        static IntPtr n_InterpolateLuma_arrayIII(IntPtr jnienv, IntPtr native__this, IntPtr native_p0, int p1, int p2)
        {
            global::Org.Jcodec.Codecs.H264.Decode.Interpolator __this = global::Java.Lang.Object.GetObject <global::Org.Jcodec.Codecs.H264.Decode.Interpolator> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            int[]  p0    = (int[])JNIEnv.GetArray(native_p0, JniHandleOwnership.DoNotTransfer, typeof(int));
            IntPtr __ret = JNIEnv.NewArray(__this.InterpolateLuma(p0, p1, p2));

            if (p0 != null)
            {
                JNIEnv.CopyArray(p0, native_p0);
            }
            return(__ret);
        }
Example #3
0
 static void n_FillFullPel_arrayIIIarrayI(IntPtr jnienv, IntPtr native__this, IntPtr native_p0, int p1, int p2, IntPtr native_p3)
 {
     global::Org.Jcodec.Codecs.H264.Decode.Interpolator __this = global::Java.Lang.Object.GetObject <global::Org.Jcodec.Codecs.H264.Decode.Interpolator> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     int[] p0 = (int[])JNIEnv.GetArray(native_p0, JniHandleOwnership.DoNotTransfer, typeof(int));
     int[] p3 = (int[])JNIEnv.GetArray(native_p3, JniHandleOwnership.DoNotTransfer, typeof(int));
     __this.FillFullPel(p0, p1, p2, p3);
     if (p0 != null)
     {
         JNIEnv.CopyArray(p0, native_p0);
     }
     if (p3 != null)
     {
         JNIEnv.CopyArray(p3, native_p3);
     }
 }