| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 | 
							- #define _GNU_SOURCE
 
- #include <obs-module.h>
 
- #include <util/dstr.h>
 
- #include <util/platform.h>
 
- #include <linux/videodev2.h>
 
- #include <sys/ioctl.h>
 
- #include <fcntl.h>
 
- #include <unistd.h>
 
- #include <dirent.h>
 
- #include <errno.h>
 
- #include <string.h>
 
- struct virtualcam_data {
 
- 	obs_output_t *output;
 
- 	int device;
 
- 	uint32_t frame_size;
 
- 	bool use_caps_workaround;
 
- };
 
- static const char *virtualcam_name(void *unused)
 
- {
 
- 	UNUSED_PARAMETER(unused);
 
- 	return "Virtual Camera Output";
 
- }
 
- static void virtualcam_destroy(void *data)
 
- {
 
- 	struct virtualcam_data *vcam = (struct virtualcam_data *)data;
 
- 	close(vcam->device);
 
- 	bfree(data);
 
- }
 
- #if defined(__linux__)
 
- static bool is_flatpak_sandbox(void)
 
- {
 
- 	static bool flatpak_info_exists = false;
 
- 	static bool initialized = false;
 
- 	if (!initialized) {
 
- 		flatpak_info_exists = access("/.flatpak-info", F_OK) == 0;
 
- 		initialized = true;
 
- 	}
 
- 	return flatpak_info_exists;
 
- }
 
- static int run_command(const char *command)
 
- {
 
- 	struct dstr str;
 
- 	int result;
 
- 	dstr_init_copy(&str, "PATH=\"$PATH:/sbin\" ");
 
- 	if (is_flatpak_sandbox())
 
- 		dstr_cat(&str, "flatpak-spawn --host ");
 
- 	dstr_cat(&str, command);
 
- 	result = system(str.array);
 
- 	dstr_free(&str);
 
- 	return result;
 
- }
 
- static bool loopback_module_loaded()
 
- {
 
- 	bool loaded = false;
 
- 	char temp[512];
 
- 	FILE *fp = fopen("/proc/modules", "r");
 
- 	if (!fp)
 
- 		return false;
 
- 	while (fgets(temp, sizeof(temp), fp)) {
 
- 		if (strstr(temp, "v4l2loopback")) {
 
- 			loaded = true;
 
- 			break;
 
- 		}
 
- 	}
 
- 	fclose(fp);
 
- 	return loaded;
 
- }
 
- bool loopback_module_available()
 
- {
 
- 	if (loopback_module_loaded()) {
 
- 		return true;
 
- 	}
 
- 	if (run_command("modinfo v4l2loopback >/dev/null 2>&1") == 0) {
 
- 		return true;
 
- 	}
 
- 	return false;
 
- }
 
- static int loopback_module_load()
 
- {
 
- 	return run_command(
 
- 		"pkexec modprobe v4l2loopback exclusive_caps=1 card_label='OBS Virtual Camera' && sleep 0.5");
 
- }
 
- #else
 
- bool loopback_module_available()
 
- {
 
- 	struct v4l2_capability capability;
 
- 	char new_device[16];
 
- 	int fd;
 
- 	int i;
 
- 	for (i = 0; i != 32; i++) {
 
- 		snprintf(new_device, 16, "/dev/video%d", i);
 
- 		fd = open(new_device, O_RDWR);
 
- 		if (fd < 0)
 
- 			continue;
 
- 		if (ioctl(fd, VIDIOC_QUERYCAP, &capability) < 0) {
 
- 			close(fd);
 
- 			continue;
 
- 		}
 
- 		if (capability.capabilities & V4L2_CAP_VIDEO_OUTPUT) {
 
- 			close(fd);
 
- 			return true;
 
- 		}
 
- 		close(fd);
 
- 	}
 
- 	return false;
 
- }
 
- #endif
 
- static void *virtualcam_create(obs_data_t *settings, obs_output_t *output)
 
- {
 
- 	struct virtualcam_data *vcam = (struct virtualcam_data *)bzalloc(sizeof(*vcam));
 
- 	vcam->output = output;
 
- 	UNUSED_PARAMETER(settings);
 
- 	return vcam;
 
- }
 
- bool try_reset_output_caps(const char *device)
 
- {
 
- 	struct v4l2_capability capability;
 
- 	struct v4l2_format format;
 
- 	int fd;
 
- 	blog(LOG_INFO, "Attempting to reset output capability of '%s'", device);
 
- 	fd = open(device, O_RDWR);
 
- 	if (fd < 0)
 
- 		return false;
 
- 	format.type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
 
- 	if (ioctl(fd, VIDIOC_G_FMT, &format) < 0)
 
- 		goto fail_close_reset_caps_fd;
 
- 	if (ioctl(fd, VIDIOC_S_FMT, &format) < 0)
 
- 		goto fail_close_reset_caps_fd;
 
- 	if (ioctl(fd, VIDIOC_STREAMON, &format.type) < 0)
 
- 		goto fail_close_reset_caps_fd;
 
- 	if (ioctl(fd, VIDIOC_STREAMOFF, &format.type) < 0)
 
- 		goto fail_close_reset_caps_fd;
 
- 	close(fd);
 
- 	fd = open(device, O_RDWR);
 
- 	if (fd < 0)
 
- 		return false;
 
- 	if (ioctl(fd, VIDIOC_QUERYCAP, &capability) < 0)
 
- 		goto fail_close_reset_caps_fd;
 
- 	close(fd);
 
- 	return (capability.device_caps & V4L2_CAP_VIDEO_OUTPUT) != 0;
 
- fail_close_reset_caps_fd:
 
- 	close(fd);
 
- 	return false;
 
- }
 
- static bool try_connect(void *data, const char *device)
 
- {
 
- 	static bool use_caps_workaround = false;
 
- 	struct virtualcam_data *vcam = (struct virtualcam_data *)data;
 
- 	struct v4l2_capability capability;
 
- 	struct v4l2_format format;
 
- 	struct v4l2_streamparm parm;
 
- 	uint32_t width = obs_output_get_width(vcam->output);
 
- 	uint32_t height = obs_output_get_height(vcam->output);
 
- 	vcam->frame_size = width * height * 2;
 
- 	vcam->device = open(device, O_RDWR);
 
- 	if (vcam->device < 0)
 
- 		return false;
 
- 	if (ioctl(vcam->device, VIDIOC_QUERYCAP, &capability) < 0)
 
- 		goto fail_close_device;
 
- 	if (!use_caps_workaround && !(capability.device_caps & V4L2_CAP_VIDEO_OUTPUT)) {
 
- 		if (!try_reset_output_caps(device))
 
- 			goto fail_close_device;
 
- 		use_caps_workaround = true;
 
- 	}
 
- 	vcam->use_caps_workaround = use_caps_workaround;
 
- 	format.type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
 
- 	if (ioctl(vcam->device, VIDIOC_G_FMT, &format) < 0)
 
- 		goto fail_close_device;
 
- 	struct obs_video_info ovi;
 
- 	obs_get_video_info(&ovi);
 
- 	memset(&parm, 0, sizeof(parm));
 
- 	parm.type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
 
- 	parm.parm.output.capability = V4L2_CAP_TIMEPERFRAME;
 
- 	parm.parm.output.timeperframe.numerator = ovi.fps_den;
 
- 	parm.parm.output.timeperframe.denominator = ovi.fps_num;
 
- 	if (ioctl(vcam->device, VIDIOC_S_PARM, &parm) < 0)
 
- 		goto fail_close_device;
 
- 	format.fmt.pix.width = width;
 
- 	format.fmt.pix.height = height;
 
- 	format.fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
 
- 	format.fmt.pix.sizeimage = vcam->frame_size;
 
- 	if (ioctl(vcam->device, VIDIOC_S_FMT, &format) < 0)
 
- 		goto fail_close_device;
 
- 	struct video_scale_info vsi = {0};
 
- 	vsi.format = VIDEO_FORMAT_YUY2;
 
- 	vsi.width = width;
 
- 	vsi.height = height;
 
- 	obs_output_set_video_conversion(vcam->output, &vsi);
 
- 	memset(&parm, 0, sizeof(parm));
 
- 	parm.type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
 
- 	if (vcam->use_caps_workaround && ioctl(vcam->device, VIDIOC_STREAMON, &format.type) < 0) {
 
- 		blog(LOG_ERROR, "Failed to start streaming on '%s' (%s)", device, strerror(errno));
 
- 		goto fail_close_device;
 
- 	}
 
- 	blog(LOG_INFO, "Virtual camera started");
 
- 	obs_output_begin_data_capture(vcam->output, 0);
 
- 	return true;
 
- fail_close_device:
 
- 	close(vcam->device);
 
- 	return false;
 
- }
 
- static int scanfilter(const struct dirent *entry)
 
- {
 
- 	return !astrcmp_n(entry->d_name, "video", 5);
 
- }
 
- static bool virtualcam_start(void *data)
 
- {
 
- 	struct virtualcam_data *vcam = (struct virtualcam_data *)data;
 
- 	struct dirent **list;
 
- 	bool success = false;
 
- 	int n;
 
- #if defined(__linux__)
 
- 	if (!loopback_module_loaded()) {
 
- 		if (loopback_module_load() != 0)
 
- 			return false;
 
- 	}
 
- #endif
 
- 	n = scandir("/dev", &list, scanfilter,
 
- #if defined(__linux__)
 
- 		    versionsort
 
- #else
 
- 		    alphasort
 
- #endif
 
- 	);
 
- 	if (n == -1)
 
- 		return false;
 
- 	for (int i = 0; i < n; i++) {
 
- 		char device[32] = {0};
 
- #if !defined(__linux__)
 
- 		if (strstr(list[i]->d_name, "video") != list[i]->d_name)
 
- 			continue;
 
- #endif
 
- 		// Use the return value of snprintf to prevent truncation warning.
 
- 		int written = snprintf(device, 32, "/dev/%s", list[i]->d_name);
 
- 		if (written >= 32)
 
- 			blog(LOG_DEBUG, "v4l2-output: A format truncation may have occurred."
 
- 					" This can be ignored since it is quite improbable.");
 
- 		if (try_connect(vcam, device)) {
 
- 			success = true;
 
- 			break;
 
- 		}
 
- 	}
 
- 	while (n--)
 
- 		free(list[n]);
 
- 	free(list);
 
- 	if (!success)
 
- 		blog(LOG_WARNING, "Failed to start virtual camera");
 
- 	return success;
 
- }
 
- static void virtualcam_stop(void *data, uint64_t ts)
 
- {
 
- 	struct virtualcam_data *vcam = (struct virtualcam_data *)data;
 
- 	obs_output_end_data_capture(vcam->output);
 
- 	uint32_t buf_type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
 
- 	if (vcam->use_caps_workaround && ioctl(vcam->device, VIDIOC_STREAMOFF, buf_type) < 0) {
 
- 		blog(LOG_WARNING, "Failed to stop streaming on video device %d (%s)", vcam->device, strerror(errno));
 
- 	}
 
- 	close(vcam->device);
 
- 	blog(LOG_INFO, "Virtual camera stopped");
 
- 	UNUSED_PARAMETER(ts);
 
- }
 
- static void virtual_video(void *param, struct video_data *frame)
 
- {
 
- 	struct virtualcam_data *vcam = (struct virtualcam_data *)param;
 
- 	uint32_t frame_size = vcam->frame_size;
 
- 	while (frame_size > 0) {
 
- 		ssize_t written = write(vcam->device, frame->data[0], vcam->frame_size);
 
- 		if (written == -1)
 
- 			break;
 
- 		frame_size -= written;
 
- 	}
 
- }
 
- struct obs_output_info virtualcam_info = {
 
- 	.id = "virtualcam_output",
 
- 	.flags = OBS_OUTPUT_VIDEO,
 
- 	.get_name = virtualcam_name,
 
- 	.create = virtualcam_create,
 
- 	.destroy = virtualcam_destroy,
 
- 	.start = virtualcam_start,
 
- 	.stop = virtualcam_stop,
 
- 	.raw_video = virtual_video,
 
- };
 
 
  |