Open sebastianrueckerai opened 1 month ago
I was able to fix this by changing:
strlcpy(f->description, pixfmt->name, sizeof(f->description));
to
snprintf(f->description, sizeof(f->description), "%s", pixfmt->name);
Build completes now and install runs without error, but also without any log messages. After rebooting, the card does not work, the test fails:
rivers/lg4k-linux ✅ ./gst_1.0_raw_video_audio.sh ./gst_1.0_raw_video_audio.sh: line 18: v4l2-ctl: command not found ./gst_1.0_raw_video_audio.sh: line 21: v4l2-ctl: command not found ./gst_1.0_raw_video_audio.sh: line 22: v4l2-ctl: command not found WARNING: erroneous pipeline: could not parse caps "video/x-raw,width=,height=,format=(string)YUY2"
Hi!
I am on Ubuntu 22.04.5 LTS with Kernel 6.8.0-45-generic.
I am getting the below error while building. Any help would be greatly appreciated! :)