IVideoDeviceManager

Video device management methods.

IVideoDeviceManager provides methods related to video device testing. You can call the queryInterface method to get the IVideoDeviceManager interface.

getCapability

Gets the detailed video frame information of the video capture device in the specified video format.


            
            
            
         
            
            
            
            
            

Details

After calling numberOfCapabilities to get the number of video formats supported by the video capture device, you can call this method to get the specific video frame information supported by the specified index number.

Parameters

deviceIdUTF8
The ID of the video capture device.
deviceCapabilityNumber
The index number of the video format. If the return value of numberOfCapabilities is i, the value range of this parameter is [0,i).

Returns

getDevice

Retrieves the current video capture device.


            
            
            
         
            
            
            
            
            

Details

Returns

numberOfCapabilities

Gets the number of video formats supported by the specified video capture device.


            
            
            
         
            
            
            
            
            

Details

Video capture devices may support multiple video formats, and each format supports different combinations of video frame width, video frame height, and frame rate.

You can call this method to get how many video formats the specified video capture device can support, and then call getCapability to get the specific video frame information in the specified video format.

Parameters

deviceIdUTF8
The ID of the video capture device.

Returns

  • ≤ 0: Failure.

setDevice

Specifies the video capture device with the device ID.


            
            
            
         
            
            
            
            
            

Details

Attention:
  • Plugging or unplugging a device does not change its device ID.

Parameters

The device ID. You can get the device ID by calling enumerateVideoDevices.

Returns

  • 0: Success.
  • < 0: Failure.