tomato/src/frame_streams/sdl/sdl_video_input_service.hpp
Green Sky c7be863daf
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousDelivery / windows (push) Has been cancelled
ContinuousDelivery / windows-asan (push) Has been cancelled
ContinuousDelivery / dumpsyms (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
ContinuousIntegration / linux (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
extract sdl cameras creation/deletion to service
and handle events
2025-04-02 20:04:34 +02:00

23 lines
393 B
C++

#pragma once
#include <solanaceae/object_store/fwd.hpp>
#include <SDL3/SDL.h>
// manages sdl camera sources
class SDLVideoInputService {
ObjectStore2& _os;
bool _subsystem_init{false};
bool addDevice(SDL_CameraID device);
bool removeDevice(SDL_CameraID device);
public:
SDLVideoInputService(ObjectStore2& os);
~SDLVideoInputService(void);
bool handleEvent(SDL_Event& e);
};