v4l2-input.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911
  1. /*
  2. Copyright (C) 2014 by Leonhard Oelke <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <unistd.h>
  17. #include <string.h>
  18. #include <inttypes.h>
  19. #include <fcntl.h>
  20. #include <dirent.h>
  21. #include <sys/time.h>
  22. #include <sys/types.h>
  23. #include <sys/ioctl.h>
  24. #include <sys/select.h>
  25. #include <linux/videodev2.h>
  26. #include <libv4l2.h>
  27. #include <util/threading.h>
  28. #include <util/bmem.h>
  29. #include <util/dstr.h>
  30. #include <util/platform.h>
  31. #include <obs-module.h>
  32. #include "v4l2-helpers.h"
  33. #if HAVE_UDEV
  34. #include "v4l2-udev.h"
  35. #endif
  36. #define V4L2_DATA(voidptr) struct v4l2_data *data = voidptr;
  37. #define timeval2ns(tv) \
  38. (((uint64_t) tv.tv_sec * 1000000000) + ((uint64_t) tv.tv_usec * 1000))
  39. #define blog(level, msg, ...) blog(level, "v4l2-input: " msg, ##__VA_ARGS__)
  40. /**
  41. * Data structure for the v4l2 source
  42. */
  43. struct v4l2_data {
  44. /* settings */
  45. char *device_id;
  46. int input;
  47. int pixfmt;
  48. int standard;
  49. int resolution;
  50. int framerate;
  51. bool sys_timing;
  52. /* internal data */
  53. obs_source_t *source;
  54. pthread_t thread;
  55. os_event_t *event;
  56. void *udev;
  57. int_fast32_t dev;
  58. int width;
  59. int height;
  60. int linesize;
  61. struct v4l2_buffer_data buffers;
  62. };
  63. /* forward declarations */
  64. static void v4l2_init(struct v4l2_data *data);
  65. static void v4l2_terminate(struct v4l2_data *data);
  66. /**
  67. * Prepare the output frame structure for obs and compute plane offsets
  68. *
  69. * Basically all data apart from memory pointers and the timestamp is known
  70. * before the capture starts. This function prepares the obs_source_frame
  71. * struct with all the data that is already known.
  72. *
  73. * v4l2 uses a continuous memory segment for all planes so we simply compute
  74. * offsets to add to the start address in order to give obs the correct data
  75. * pointers for the individual planes.
  76. */
  77. static void v4l2_prep_obs_frame(struct v4l2_data *data,
  78. struct obs_source_frame *frame, size_t *plane_offsets)
  79. {
  80. memset(frame, 0, sizeof(struct obs_source_frame));
  81. memset(plane_offsets, 0, sizeof(size_t) * MAX_AV_PLANES);
  82. frame->width = data->width;
  83. frame->height = data->height;
  84. frame->format = v4l2_to_obs_video_format(data->pixfmt);
  85. video_format_get_parameters(VIDEO_CS_DEFAULT, VIDEO_RANGE_PARTIAL,
  86. frame->color_matrix, frame->color_range_min,
  87. frame->color_range_max);
  88. switch(data->pixfmt) {
  89. case V4L2_PIX_FMT_NV12:
  90. frame->linesize[0] = data->linesize;
  91. frame->linesize[1] = data->linesize / 2;
  92. plane_offsets[1] = data->linesize * data->height;
  93. break;
  94. case V4L2_PIX_FMT_YVU420:
  95. frame->linesize[0] = data->linesize;
  96. frame->linesize[1] = data->linesize / 2;
  97. frame->linesize[2] = data->linesize / 2;
  98. plane_offsets[1] = data->linesize * data->height * 5 / 4;
  99. plane_offsets[2] = data->linesize * data->height;
  100. break;
  101. case V4L2_PIX_FMT_YUV420:
  102. frame->linesize[0] = data->linesize;
  103. frame->linesize[1] = data->linesize / 2;
  104. frame->linesize[2] = data->linesize / 2;
  105. plane_offsets[1] = data->linesize * data->height;
  106. plane_offsets[2] = data->linesize * data->height * 5 / 4;
  107. break;
  108. default:
  109. frame->linesize[0] = data->linesize;
  110. break;
  111. }
  112. }
  113. /*
  114. * Worker thread to get video data
  115. */
  116. static void *v4l2_thread(void *vptr)
  117. {
  118. V4L2_DATA(vptr);
  119. int r;
  120. fd_set fds;
  121. uint8_t *start;
  122. uint64_t frames;
  123. uint64_t first_ts;
  124. struct timeval tv;
  125. struct v4l2_buffer buf;
  126. struct obs_source_frame out;
  127. size_t plane_offsets[MAX_AV_PLANES];
  128. if (v4l2_start_capture(data->dev, &data->buffers) < 0)
  129. goto exit;
  130. frames = 0;
  131. first_ts = 0;
  132. v4l2_prep_obs_frame(data, &out, plane_offsets);
  133. while (os_event_try(data->event) == EAGAIN) {
  134. FD_ZERO(&fds);
  135. FD_SET(data->dev, &fds);
  136. tv.tv_sec = 1;
  137. tv.tv_usec = 0;
  138. r = select(data->dev + 1, &fds, NULL, NULL, &tv);
  139. if (r < 0) {
  140. if (errno == EINTR)
  141. continue;
  142. blog(LOG_DEBUG, "select failed");
  143. break;
  144. } else if (r == 0) {
  145. blog(LOG_DEBUG, "select timeout");
  146. continue;
  147. }
  148. buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  149. buf.memory = V4L2_MEMORY_MMAP;
  150. if (v4l2_ioctl(data->dev, VIDIOC_DQBUF, &buf) < 0) {
  151. if (errno == EAGAIN)
  152. continue;
  153. blog(LOG_DEBUG, "failed to dequeue buffer");
  154. break;
  155. }
  156. out.timestamp = data->sys_timing ?
  157. os_gettime_ns() : timeval2ns(buf.timestamp);
  158. if (!frames)
  159. first_ts = out.timestamp;
  160. out.timestamp -= first_ts;
  161. start = (uint8_t *) data->buffers.info[buf.index].start;
  162. for (uint_fast32_t i = 0; i < MAX_AV_PLANES; ++i)
  163. out.data[i] = start + plane_offsets[i];
  164. obs_source_output_video(data->source, &out);
  165. if (v4l2_ioctl(data->dev, VIDIOC_QBUF, &buf) < 0) {
  166. blog(LOG_DEBUG, "failed to enqueue buffer");
  167. break;
  168. }
  169. frames++;
  170. }
  171. blog(LOG_INFO, "Stopped capture after %"PRIu64" frames", frames);
  172. exit:
  173. v4l2_stop_capture(data->dev);
  174. return NULL;
  175. }
  176. static const char* v4l2_getname(void)
  177. {
  178. return obs_module_text("V4L2Input");
  179. }
  180. static void v4l2_defaults(obs_data_t *settings)
  181. {
  182. obs_data_set_default_int(settings, "input", -1);
  183. obs_data_set_default_int(settings, "pixelformat", -1);
  184. obs_data_set_default_int(settings, "standard", -1);
  185. obs_data_set_default_int(settings, "resolution", -1);
  186. obs_data_set_default_int(settings, "framerate", -1);
  187. obs_data_set_default_bool(settings, "system_timing", false);
  188. }
  189. /**
  190. * Enable/Disable all properties for the source.
  191. *
  192. * @note A property that should be ignored can be specified
  193. *
  194. * @param props the source properties
  195. * @param ignore ignore this property
  196. * @param enable enable/disable all properties
  197. */
  198. static void v4l2_props_set_enabled(obs_properties_t *props,
  199. obs_property_t *ignore, bool enable)
  200. {
  201. if (!props)
  202. return;
  203. for (obs_property_t *prop = obs_properties_first(props); prop != NULL;
  204. obs_property_next(&prop)) {
  205. if (prop == ignore)
  206. continue;
  207. obs_property_set_enabled(prop, enable);
  208. }
  209. }
  210. /*
  211. * List available devices
  212. */
  213. static void v4l2_device_list(obs_property_t *prop, obs_data_t *settings)
  214. {
  215. DIR *dirp;
  216. struct dirent *dp;
  217. struct dstr device;
  218. bool cur_device_found;
  219. size_t cur_device_index;
  220. const char *cur_device_name;
  221. dirp = opendir("/sys/class/video4linux");
  222. if (!dirp)
  223. return;
  224. cur_device_found = false;
  225. cur_device_name = obs_data_get_string(settings, "device_id");
  226. obs_property_list_clear(prop);
  227. dstr_init_copy(&device, "/dev/");
  228. while ((dp = readdir(dirp)) != NULL) {
  229. int fd;
  230. uint32_t caps;
  231. struct v4l2_capability video_cap;
  232. if (dp->d_type == DT_DIR)
  233. continue;
  234. dstr_resize(&device, 5);
  235. dstr_cat(&device, dp->d_name);
  236. if ((fd = v4l2_open(device.array, O_RDWR | O_NONBLOCK)) == -1) {
  237. blog(LOG_INFO, "Unable to open %s", device.array);
  238. continue;
  239. }
  240. if (v4l2_ioctl(fd, VIDIOC_QUERYCAP, &video_cap) == -1) {
  241. blog(LOG_INFO, "Failed to query capabilities for %s",
  242. device.array);
  243. v4l2_close(fd);
  244. continue;
  245. }
  246. caps = (video_cap.capabilities & V4L2_CAP_DEVICE_CAPS)
  247. ? video_cap.device_caps
  248. : video_cap.capabilities;
  249. if (!(caps & V4L2_CAP_VIDEO_CAPTURE)) {
  250. blog(LOG_INFO, "%s seems to not support video capture",
  251. device.array);
  252. v4l2_close(fd);
  253. continue;
  254. }
  255. obs_property_list_add_string(prop, (char *) video_cap.card,
  256. device.array);
  257. blog(LOG_INFO, "Found device '%s' at %s", video_cap.card,
  258. device.array);
  259. /* check if this is the currently used device */
  260. if (cur_device_name && !strcmp(cur_device_name, device.array))
  261. cur_device_found = true;
  262. v4l2_close(fd);
  263. }
  264. /* add currently selected device if not present, but disable it ... */
  265. if (!cur_device_found && cur_device_name && strlen(cur_device_name)) {
  266. cur_device_index = obs_property_list_add_string(prop,
  267. cur_device_name, cur_device_name);
  268. obs_property_list_item_disable(prop, cur_device_index, true);
  269. }
  270. closedir(dirp);
  271. dstr_free(&device);
  272. }
  273. /*
  274. * List inputs for device
  275. */
  276. static void v4l2_input_list(int_fast32_t dev, obs_property_t *prop)
  277. {
  278. struct v4l2_input in;
  279. memset(&in, 0, sizeof(in));
  280. obs_property_list_clear(prop);
  281. obs_property_list_add_int(prop, obs_module_text("LeaveUnchanged"), -1);
  282. while (v4l2_ioctl(dev, VIDIOC_ENUMINPUT, &in) == 0) {
  283. obs_property_list_add_int(prop, (char *) in.name, in.index);
  284. blog(LOG_INFO, "Found input '%s' (Index %d)", in.name,
  285. in.index);
  286. in.index++;
  287. }
  288. }
  289. /*
  290. * List formats for device
  291. */
  292. static void v4l2_format_list(int dev, obs_property_t *prop)
  293. {
  294. struct v4l2_fmtdesc fmt;
  295. fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  296. fmt.index = 0;
  297. struct dstr buffer;
  298. dstr_init(&buffer);
  299. obs_property_list_clear(prop);
  300. obs_property_list_add_int(prop, obs_module_text("LeaveUnchanged"), -1);
  301. while (v4l2_ioctl(dev, VIDIOC_ENUM_FMT, &fmt) == 0) {
  302. dstr_copy(&buffer, (char *) fmt.description);
  303. if (fmt.flags & V4L2_FMT_FLAG_EMULATED)
  304. dstr_cat(&buffer, " (Emulated)");
  305. if (v4l2_to_obs_video_format(fmt.pixelformat)
  306. != VIDEO_FORMAT_NONE) {
  307. obs_property_list_add_int(prop, buffer.array,
  308. fmt.pixelformat);
  309. blog(LOG_INFO, "Pixelformat: %s (available)",
  310. buffer.array);
  311. } else {
  312. blog(LOG_INFO, "Pixelformat: %s (unavailable)",
  313. buffer.array);
  314. }
  315. fmt.index++;
  316. }
  317. dstr_free(&buffer);
  318. }
  319. /*
  320. * List video standards for the device
  321. */
  322. static void v4l2_standard_list(int dev, obs_property_t *prop)
  323. {
  324. struct v4l2_standard std;
  325. std.index = 0;
  326. obs_property_list_clear(prop);
  327. obs_property_list_add_int(prop, obs_module_text("LeaveUnchanged"), -1);
  328. while (v4l2_ioctl(dev, VIDIOC_ENUMSTD, &std) == 0) {
  329. obs_property_list_add_int(prop, (char *) std.name, std.id);
  330. std.index++;
  331. }
  332. }
  333. /*
  334. * List dv timings for the device
  335. */
  336. static void v4l2_dv_timing_list(int dev, obs_property_t *prop)
  337. {
  338. struct v4l2_dv_timings dvt;
  339. struct dstr buf;
  340. int index = 0;
  341. dstr_init(&buf);
  342. obs_property_list_clear(prop);
  343. obs_property_list_add_int(prop, obs_module_text("LeaveUnchanged"), -1);
  344. while (v4l2_enum_dv_timing(dev, &dvt, index) == 0) {
  345. /* i do not pretend to understand, this is from qv4l2 ... */
  346. double h = (double) dvt.bt.height + dvt.bt.vfrontporch +
  347. dvt.bt.vsync + dvt.bt.vbackporch +
  348. dvt.bt.il_vfrontporch + dvt.bt.il_vsync +
  349. dvt.bt.il_vbackporch;
  350. double w = (double) dvt.bt.width + dvt.bt.hfrontporch +
  351. dvt.bt.hsync + dvt.bt.hbackporch;
  352. double i = (dvt.bt.interlaced) ? 2.0f : 1.0f;
  353. double rate = (double) dvt.bt.pixelclock / (w * (h / i));
  354. dstr_printf(&buf, "%ux%u%c %.2f",
  355. dvt.bt.width, dvt.bt.height,
  356. (dvt.bt.interlaced) ? 'i' : 'p', rate);
  357. obs_property_list_add_int(prop, buf.array, index);
  358. index++;
  359. }
  360. dstr_free(&buf);
  361. }
  362. /*
  363. * List resolutions for device and format
  364. */
  365. static void v4l2_resolution_list(int dev, uint_fast32_t pixelformat,
  366. obs_property_t *prop)
  367. {
  368. struct v4l2_frmsizeenum frmsize;
  369. frmsize.pixel_format = pixelformat;
  370. frmsize.index = 0;
  371. struct dstr buffer;
  372. dstr_init(&buffer);
  373. obs_property_list_clear(prop);
  374. obs_property_list_add_int(prop, obs_module_text("LeaveUnchanged"), -1);
  375. v4l2_ioctl(dev, VIDIOC_ENUM_FRAMESIZES, &frmsize);
  376. switch(frmsize.type) {
  377. case V4L2_FRMSIZE_TYPE_DISCRETE:
  378. while (v4l2_ioctl(dev, VIDIOC_ENUM_FRAMESIZES, &frmsize) == 0) {
  379. dstr_printf(&buffer, "%dx%d", frmsize.discrete.width,
  380. frmsize.discrete.height);
  381. obs_property_list_add_int(prop, buffer.array,
  382. v4l2_pack_tuple(frmsize.discrete.width,
  383. frmsize.discrete.height));
  384. frmsize.index++;
  385. }
  386. break;
  387. default:
  388. blog(LOG_INFO, "Stepwise and Continuous framesizes "
  389. "are currently hardcoded");
  390. for (const int *packed = v4l2_framesizes; *packed; ++packed) {
  391. int width;
  392. int height;
  393. v4l2_unpack_tuple(&width, &height, *packed);
  394. dstr_printf(&buffer, "%dx%d", width, height);
  395. obs_property_list_add_int(prop, buffer.array, *packed);
  396. }
  397. break;
  398. }
  399. dstr_free(&buffer);
  400. }
  401. /*
  402. * List framerates for device and resolution
  403. */
  404. static void v4l2_framerate_list(int dev, uint_fast32_t pixelformat,
  405. uint_fast32_t width, uint_fast32_t height, obs_property_t *prop)
  406. {
  407. struct v4l2_frmivalenum frmival;
  408. frmival.pixel_format = pixelformat;
  409. frmival.width = width;
  410. frmival.height = height;
  411. frmival.index = 0;
  412. struct dstr buffer;
  413. dstr_init(&buffer);
  414. obs_property_list_clear(prop);
  415. obs_property_list_add_int(prop, obs_module_text("LeaveUnchanged"), -1);
  416. v4l2_ioctl(dev, VIDIOC_ENUM_FRAMEINTERVALS, &frmival);
  417. switch(frmival.type) {
  418. case V4L2_FRMIVAL_TYPE_DISCRETE:
  419. while (v4l2_ioctl(dev, VIDIOC_ENUM_FRAMEINTERVALS,
  420. &frmival) == 0) {
  421. float fps = (float) frmival.discrete.denominator /
  422. frmival.discrete.numerator;
  423. int pack = v4l2_pack_tuple(frmival.discrete.numerator,
  424. frmival.discrete.denominator);
  425. dstr_printf(&buffer, "%.2f", fps);
  426. obs_property_list_add_int(prop, buffer.array, pack);
  427. frmival.index++;
  428. }
  429. break;
  430. default:
  431. blog(LOG_INFO, "Stepwise and Continuous framerates "
  432. "are currently hardcoded");
  433. for (const int *packed = v4l2_framerates; *packed; ++packed) {
  434. int num;
  435. int denom;
  436. v4l2_unpack_tuple(&num, &denom, *packed);
  437. float fps = (float) denom / num;
  438. dstr_printf(&buffer, "%.2f", fps);
  439. obs_property_list_add_int(prop, buffer.array, *packed);
  440. }
  441. break;
  442. }
  443. dstr_free(&buffer);
  444. }
  445. /*
  446. * Device selected callback
  447. */
  448. static bool device_selected(obs_properties_t *props, obs_property_t *p,
  449. obs_data_t *settings)
  450. {
  451. int dev = v4l2_open(obs_data_get_string(settings, "device_id"),
  452. O_RDWR | O_NONBLOCK);
  453. v4l2_props_set_enabled(props, p, (dev == -1) ? false : true);
  454. if (dev == -1)
  455. return false;
  456. obs_property_t *prop = obs_properties_get(props, "input");
  457. v4l2_input_list(dev, prop);
  458. v4l2_close(dev);
  459. obs_property_modified(prop, settings);
  460. return true;
  461. }
  462. /*
  463. * Input selected callback
  464. */
  465. static bool input_selected(obs_properties_t *props, obs_property_t *p,
  466. obs_data_t *settings)
  467. {
  468. UNUSED_PARAMETER(p);
  469. int dev = v4l2_open(obs_data_get_string(settings, "device_id"),
  470. O_RDWR | O_NONBLOCK);
  471. if (dev == -1)
  472. return false;
  473. obs_property_t *prop = obs_properties_get(props, "pixelformat");
  474. v4l2_format_list(dev, prop);
  475. v4l2_close(dev);
  476. obs_property_modified(prop, settings);
  477. return true;
  478. }
  479. /*
  480. * Format selected callback
  481. */
  482. static bool format_selected(obs_properties_t *props, obs_property_t *p,
  483. obs_data_t *settings)
  484. {
  485. UNUSED_PARAMETER(p);
  486. int dev = v4l2_open(obs_data_get_string(settings, "device_id"),
  487. O_RDWR | O_NONBLOCK);
  488. if (dev == -1)
  489. return false;
  490. int input = (int) obs_data_get_int(settings, "input");
  491. uint32_t caps = 0;
  492. if (v4l2_get_input_caps(dev, input, &caps) < 0)
  493. return false;
  494. caps &= V4L2_IN_CAP_STD;
  495. obs_property_t *resolution = obs_properties_get(props, "resolution");
  496. obs_property_t *framerate = obs_properties_get(props, "framerate");
  497. obs_property_t *standard = obs_properties_get(props, "standard");
  498. obs_property_set_visible(resolution, (!caps) ? true : false);
  499. obs_property_set_visible(framerate, (!caps) ? true : false);
  500. obs_property_set_visible(standard,
  501. (caps & V4L2_IN_CAP_STD) ? true : false);
  502. if (!caps) {
  503. v4l2_resolution_list(dev, obs_data_get_int(
  504. settings, "pixelformat"), resolution);
  505. }
  506. if (caps & V4L2_IN_CAP_STD)
  507. v4l2_standard_list(dev, standard);
  508. v4l2_close(dev);
  509. if (!caps)
  510. obs_property_modified(resolution, settings);
  511. if (caps & V4L2_IN_CAP_STD)
  512. obs_property_modified(standard, settings);
  513. return true;
  514. }
  515. /*
  516. * Resolution selected callback
  517. */
  518. static bool resolution_selected(obs_properties_t *props, obs_property_t *p,
  519. obs_data_t *settings)
  520. {
  521. UNUSED_PARAMETER(p);
  522. int width, height;
  523. int dev = v4l2_open(obs_data_get_string(settings, "device_id"),
  524. O_RDWR | O_NONBLOCK);
  525. if (dev == -1)
  526. return false;
  527. obs_property_t *prop = obs_properties_get(props, "framerate");
  528. v4l2_unpack_tuple(&width, &height, obs_data_get_int(settings,
  529. "resolution"));
  530. v4l2_framerate_list(dev, obs_data_get_int(settings, "pixelformat"),
  531. width, height, prop);
  532. v4l2_close(dev);
  533. obs_property_modified(prop, settings);
  534. return true;
  535. }
  536. #if HAVE_UDEV
  537. /**
  538. * Device added callback
  539. *
  540. * If everything went fine we can start capturing again when the device is
  541. * reconnected
  542. */
  543. static void device_added(const char *dev, void *vptr)
  544. {
  545. V4L2_DATA(vptr);
  546. obs_source_update_properties(data->source);
  547. if (strcmp(data->device_id, dev))
  548. return;
  549. blog(LOG_INFO, "Device %s reconnected", dev);
  550. v4l2_init(data);
  551. }
  552. /**
  553. * Device removed callback
  554. *
  555. * We stop recording here so we don't block the device node
  556. */
  557. static void device_removed(const char *dev, void *vptr)
  558. {
  559. V4L2_DATA(vptr);
  560. obs_source_update_properties(data->source);
  561. if (strcmp(data->device_id, dev))
  562. return;
  563. blog(LOG_INFO, "Device %s disconnected", dev);
  564. v4l2_terminate(data);
  565. }
  566. #endif
  567. static obs_properties_t *v4l2_properties(void *vptr)
  568. {
  569. V4L2_DATA(vptr);
  570. obs_properties_t *props = obs_properties_create();
  571. obs_property_t *device_list = obs_properties_add_list(props,
  572. "device_id", obs_module_text("Device"),
  573. OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_STRING);
  574. obs_property_t *input_list = obs_properties_add_list(props,
  575. "input", obs_module_text("Input"),
  576. OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_INT);
  577. obs_property_t *format_list = obs_properties_add_list(props,
  578. "pixelformat", obs_module_text("VideoFormat"),
  579. OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_INT);
  580. obs_property_t *standard_list = obs_properties_add_list(props,
  581. "standard", obs_module_text("VideoStandard"),
  582. OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_INT);
  583. obs_property_set_visible(standard_list, false);
  584. obs_property_t *resolution_list = obs_properties_add_list(props,
  585. "resolution", obs_module_text("Resolution"),
  586. OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_INT);
  587. obs_properties_add_list(props,
  588. "framerate", obs_module_text("FrameRate"),
  589. OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_INT);
  590. obs_properties_add_bool(props,
  591. "system_timing", obs_module_text("UseSystemTiming"));
  592. obs_data_t *settings = obs_source_get_settings(data->source);
  593. v4l2_device_list(device_list, settings);
  594. obs_data_release(settings);
  595. obs_property_set_modified_callback(device_list, device_selected);
  596. obs_property_set_modified_callback(input_list, input_selected);
  597. obs_property_set_modified_callback(format_list, format_selected);
  598. obs_property_set_modified_callback(resolution_list,
  599. resolution_selected);
  600. return props;
  601. }
  602. static void v4l2_terminate(struct v4l2_data *data)
  603. {
  604. if (data->thread) {
  605. os_event_signal(data->event);
  606. pthread_join(data->thread, NULL);
  607. os_event_destroy(data->event);
  608. data->thread = 0;
  609. }
  610. v4l2_destroy_mmap(&data->buffers);
  611. if (data->dev != -1) {
  612. v4l2_close(data->dev);
  613. data->dev = -1;
  614. }
  615. }
  616. static void v4l2_destroy(void *vptr)
  617. {
  618. V4L2_DATA(vptr);
  619. if (!data)
  620. return;
  621. v4l2_terminate(data);
  622. if (data->device_id)
  623. bfree(data->device_id);
  624. #if HAVE_UDEV
  625. v4l2_unref_udev(data->udev);
  626. #endif
  627. bfree(data);
  628. }
  629. /**
  630. * Initialize the v4l2 device
  631. *
  632. * This function:
  633. * - tries to open the device
  634. * - sets pixelformat and requested resolution
  635. * - sets the requested framerate
  636. * - maps the buffers
  637. * - starts the capture thread
  638. */
  639. static void v4l2_init(struct v4l2_data *data)
  640. {
  641. uint32_t input_caps;
  642. int fps_num, fps_denom;
  643. blog(LOG_INFO, "Start capture from %s", data->device_id);
  644. data->dev = v4l2_open(data->device_id, O_RDWR | O_NONBLOCK);
  645. if (data->dev == -1) {
  646. blog(LOG_ERROR, "Unable to open device");
  647. goto fail;
  648. }
  649. /* set input */
  650. if (v4l2_set_input(data->dev, &data->input) < 0) {
  651. blog(LOG_ERROR, "Unable to set input %d", data->input);
  652. goto fail;
  653. }
  654. blog(LOG_INFO, "Input: %d", data->input);
  655. if (v4l2_get_input_caps(data->dev, -1, &input_caps) < 0) {
  656. blog(LOG_ERROR, "Unable to get input capabilities");
  657. goto fail;
  658. }
  659. /* set video standard if supported */
  660. if (input_caps & V4L2_IN_CAP_STD) {
  661. if (v4l2_set_standard(data->dev, &data->standard) < 0) {
  662. blog(LOG_ERROR, "Unable to set video standard");
  663. goto fail;
  664. }
  665. data->resolution = -1;
  666. data->framerate = -1;
  667. }
  668. /* set pixel format and resolution */
  669. if (v4l2_set_format(data->dev, &data->resolution, &data->pixfmt,
  670. &data->linesize) < 0) {
  671. blog(LOG_ERROR, "Unable to set format");
  672. goto fail;
  673. }
  674. if (v4l2_to_obs_video_format(data->pixfmt) == VIDEO_FORMAT_NONE) {
  675. blog(LOG_ERROR, "Selected video format not supported");
  676. goto fail;
  677. }
  678. v4l2_unpack_tuple(&data->width, &data->height, data->resolution);
  679. blog(LOG_INFO, "Resolution: %dx%d", data->width, data->height);
  680. blog(LOG_INFO, "Pixelformat: %d", data->pixfmt);
  681. blog(LOG_INFO, "Linesize: %d Bytes", data->linesize);
  682. /* set framerate */
  683. if (v4l2_set_framerate(data->dev, &data->framerate) < 0) {
  684. blog(LOG_ERROR, "Unable to set framerate");
  685. goto fail;
  686. }
  687. v4l2_unpack_tuple(&fps_num, &fps_denom, data->framerate);
  688. blog(LOG_INFO, "Framerate: %.2f fps", (float) fps_denom / fps_num);
  689. /* map buffers */
  690. if (v4l2_create_mmap(data->dev, &data->buffers) < 0) {
  691. blog(LOG_ERROR, "Failed to map buffers");
  692. goto fail;
  693. }
  694. /* start the capture thread */
  695. if (os_event_init(&data->event, OS_EVENT_TYPE_MANUAL) != 0)
  696. goto fail;
  697. if (pthread_create(&data->thread, NULL, v4l2_thread, data) != 0)
  698. goto fail;
  699. return;
  700. fail:
  701. blog(LOG_ERROR, "Initialization failed");
  702. v4l2_terminate(data);
  703. }
  704. /**
  705. * Update the settings for the v4l2 source
  706. *
  707. * Since there are very few settings that can be changed without restarting the
  708. * stream we don't bother to even try. Whenever this is called the currently
  709. * active stream (if exists) is stopped, the settings are updated and finally
  710. * the new stream is started.
  711. */
  712. static void v4l2_update(void *vptr, obs_data_t *settings)
  713. {
  714. V4L2_DATA(vptr);
  715. v4l2_terminate(data);
  716. if (data->device_id)
  717. bfree(data->device_id);
  718. data->device_id = bstrdup(obs_data_get_string(settings, "device_id"));
  719. data->input = obs_data_get_int(settings, "input");
  720. data->pixfmt = obs_data_get_int(settings, "pixelformat");
  721. data->standard = obs_data_get_int(settings, "standard");
  722. data->resolution = obs_data_get_int(settings, "resolution");
  723. data->framerate = obs_data_get_int(settings, "framerate");
  724. data->sys_timing = obs_data_get_bool(settings, "system_timing");
  725. v4l2_init(data);
  726. }
  727. static void *v4l2_create(obs_data_t *settings, obs_source_t *source)
  728. {
  729. struct v4l2_data *data = bzalloc(sizeof(struct v4l2_data));
  730. data->dev = -1;
  731. data->source = source;
  732. v4l2_update(data, settings);
  733. #if HAVE_UDEV
  734. data->udev = v4l2_init_udev();
  735. v4l2_set_device_added_callback(data->udev, &device_added, data);
  736. v4l2_set_device_removed_callback(data->udev, &device_removed, data);
  737. #endif
  738. return data;
  739. }
  740. struct obs_source_info v4l2_input = {
  741. .id = "v4l2_input",
  742. .type = OBS_SOURCE_TYPE_INPUT,
  743. .output_flags = OBS_SOURCE_ASYNC_VIDEO,
  744. .get_name = v4l2_getname,
  745. .create = v4l2_create,
  746. .destroy = v4l2_destroy,
  747. .update = v4l2_update,
  748. .get_defaults = v4l2_defaults,
  749. .get_properties = v4l2_properties
  750. };