// usbcamdi.h
PCAM_NEW_FRAME_ROUTINE PcamNewFrameRoutine;
VOID PcamNewFrameRoutine(
PVOID DeviceContext,
PVOID FrameContext
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
[CamNewVideoFrame is not supported and may be altered or unavailable in the future. Instead, use CamNewVideoFrameEx. ]
A camera minidriver's CamNewVideoFrame callback function initializes a new video frame context structure.
DeviceContextPointer to the camera minidriver's device context.
FrameContextPointer to the camera minidriver's frame context.
Camera minidrivers that must maintain backward compatibility with the original USBCAMD must use the USBCAMD_DEVICE_DATA structure and its associated callback functions (that is, callback functions that do not contain the "Ex" suffix).
USBCAMD calls the camera minidriver's CamNewVideoFrame callback function at IRQL = DISPATCH_LEVEL.
This function is optional.