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

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

            return(ToxAvFunctions.SendVideo(_toxAv, callIndex, frame, (uint)frame.Length));
        }