Interface DSCaptureDevice.ISampleGrabberCB
-
- Enclosing class:
- DSCaptureDevice
public static interface DSCaptureDevice.ISampleGrabberCBThe Java equivalent of the DirectShow ISampleGrabberCB interface as it is utilized by DSCaptureDevice.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidSampleCB(long source, long ptr, int length)Notifies this instance that a specific video frame has been captured/grabbed.
-
-
-
Method Detail
-
SampleCB
void SampleCB(long source, long ptr, int length)Notifies this instance that a specific video frame has been captured/grabbed.- Parameters:
source- a pointer to the native DSCaptureDevice which is the source of the notificationptr- a pointer to the captured/grabbed video frame i.e. to the data of the DirectShow IMediaSamplelength- the length in bytes of the valid data pointed to by ptr
-
-