예제 #1
0
파일: ToxAv.cs 프로젝트: hexafluoride/Detox
        public int PrepareVideoFrame(int callIndex, byte[] dest, IntPtr img)
        {
            ThrowIfDisposed();

            if (dest == null)
            {
                throw new ArgumentNullException("dest");
            }

            return(ToxAvFunctions.PrepareVideoFrame(_toxAv, callIndex, dest, dest.Length, img));
        }