table of contents
other versions
SDL_SetVideoCaptureSpec(3) | SDL3 FUNCTIONS | SDL_SetVideoCaptureSpec(3) |
NAME¶
SDL_SetVideoCaptureSpec - Set specification
SYNOPSIS¶
#include "SDL3/SDL.h"
int SDL_SetVideoCaptureSpec(SDL_VideoCaptureDevice *device, const SDL_VideoCaptureSpec *desired, SDL_VideoCaptureSpec *obtained, int allowed_changes);
FUNCTION PARAMETERS¶
- device
- opened video capture device
- desired
- desired video capture spec
- obtained
- obtained video capture spec
- allowed_changes
- allow changes or not
RETURN VALUE¶
Returns 0 on success or a negative error code on failure; call
SDL_GetError () for more information.
AVAILABILITY¶
This function is available since SDL 3.0.0.
SEE ALSO¶
SDL_OpenVideoCapture(3), SDL_OpenVideoCaptureWithSpec(3), SDL_GetVideoCaptureSpec(3)
SDL 3.0.0 | SDL |