diff options
author | Vasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com> | 2021-09-14 07:08:22 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-12-07 22:54:14 +0000 |
commit | 3c3a41eb2b33ba2253eb7439ff6290c414143416 (patch) | |
tree | 9b50276b3be903de04fb82467638fb37d5a5d27d /app/main.cpp | |
parent | 88fde6fd98c0c4330cd91af267efa2f5492da180 (diff) |
Automatically detect camera capable v4l2 device.
Bug-AGL: SPEC-4148
Change-Id: I42cf0adf9e55679069992d73f079b916684f8e8b
Signed-off-by: Vasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com>
Diffstat (limited to 'app/main.cpp')
-rw-r--r-- | app/main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/main.cpp b/app/main.cpp index fff9c4c..182489e 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -23,8 +23,6 @@ #include <gst/video/videooverlay.h> #include <gst/wayland/wayland.h> -#define DEFAULT_VIDEO_DEVICE "/dev/video0" - // these only applies if the window is a dialog/pop-up one // by default the compositor make the window maximized #define WINDOW_WIDTH_SIZE 640 @@ -669,7 +667,7 @@ int main(int argc, char *argv[]) memset(pipeline_str, 0, sizeof(pipeline_str)); snprintf(pipeline_str, sizeof(pipeline_str), "v4l2src device=%s ! video/x-raw,width=%d,height=%d ! waylandsink", - DEFAULT_VIDEO_DEVICE, WINDOW_WIDTH_SIZE, WINDOW_HEIGHT_SIZE); + get_camera_device(), WINDOW_WIDTH_SIZE, WINDOW_HEIGHT_SIZE); gst_init(&gargc, &gargv); setbuf(stdout, NULL); |