Tsukikage.DirectShow.SampleGrabberGraph.OnVideoFrame C# (CSharp) Method

OnVideoFrame() protected method

VideoFrameイベントを発生させます。
protected OnVideoFrame ( double sampleTime, IntPtr pBuffer, int bufferLength ) : int
sampleTime double
pBuffer System.IntPtr
bufferLength int
return int
        protected virtual int OnVideoFrame(double sampleTime, IntPtr pBuffer, int bufferLength)
        {
            if (VideoFrame != null)
                VideoFrame(sampleTime, pBuffer, bufferLength);
            return 0;
        }