From 2f44b45e8a1dea2c24af2653dd6bc601c006c569 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Thu, 16 May 2024 08:47:32 +0200 Subject: [PATCH] disabled tests and print cam driver --- src/content/sdl_video_frame_stream2.cpp | 1 + src/main.cpp | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/content/sdl_video_frame_stream2.cpp b/src/content/sdl_video_frame_stream2.cpp index f75e6fc..dfa8287 100644 --- a/src/content/sdl_video_frame_stream2.cpp +++ b/src/content/sdl_video_frame_stream2.cpp @@ -9,6 +9,7 @@ SDLVideoCameraContent::SDLVideoCameraContent(void) { int devcount {0}; SDL_CameraDeviceID *devices = SDL_GetCameraDevices(&devcount); + std::cout << "SDL Camera Driver: " << SDL_GetCurrentCameraDriver() << "\n"; if (devices == nullptr || devcount < 1) { throw int(1); // TODO: proper exception? diff --git a/src/main.cpp b/src/main.cpp index df07a3c..b14275c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -63,7 +63,7 @@ int main(int argc, char** argv) { // optionally init audio and camera if (SDL_Init(SDL_INIT_AUDIO) < 0) { std::cerr << "SDL_Init AUDIO failed (" << SDL_GetError() << ")\n"; - } else { + } else if (false) { SDLAudioInputDeviceDefault aidd; auto* reader = aidd.aquireSubStream(); @@ -85,7 +85,8 @@ int main(int argc, char** argv) { if (SDL_Init(SDL_INIT_CAMERA) < 0) { std::cerr << "SDL_Init CAMERA failed (" << SDL_GetError() << ")\n"; - } else { // HACK + } else if (false) { // HACK + std::cerr << "CAMERA initialized\n"; SDLVideoCameraContent vcc; auto* reader = vcc.aquireSubStream(); for (size_t i = 0; i < 20; i++) {