Scroll to navigation

SDL_OpenVideoCaptureWithSpec(3) SDL3 FUNCTIONS SDL_OpenVideoCaptureWithSpec(3)

NAME

SDL_OpenVideoCaptureWithSpec - Open a Video Capture device and set specification

SYNOPSIS

#include "SDL3/SDL.h"
SDL_VideoCaptureDevice* SDL_OpenVideoCaptureWithSpec(SDL_VideoCaptureDeviceID instance_id,
                                                      const SDL_VideoCaptureSpec *desired,
                                                      SDL_VideoCaptureSpec *obtained,
                                                      int allowed_changes);

FUNCTION PARAMETERS

the video capture device instance ID
desired video capture spec
obtained video capture spec
allow changes or not

RETURN VALUE

Returns device, or NULL on failure; call SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_OpenVideoCapture(3), SDL_SetVideoCaptureSpec(3), SDL_GetVideoCaptureSpec(3)

SDL 3.0.0 SDL