You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1082 lines
36KB

  1. /*
  2. * Copyright (c) 2000,2001 Fabrice Bellard
  3. * Copyright (c) 2006 Luca Abeni
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Video4Linux2 grab interface
  24. *
  25. * Part of this file is based on the V4L2 video capture example
  26. * (http://linuxtv.org/downloads/v4l-dvb-apis/capture-example.html)
  27. *
  28. * Thanks to Michael Niedermayer for providing the mapping between
  29. * V4L2_PIX_FMT_* and AV_PIX_FMT_*
  30. */
  31. #undef __STRICT_ANSI__ //workaround due to broken kernel headers
  32. #include "config.h"
  33. #include "libavformat/internal.h"
  34. #include <unistd.h>
  35. #include <fcntl.h>
  36. #include <sys/ioctl.h>
  37. #include <sys/mman.h>
  38. #include <sys/time.h>
  39. #if HAVE_SYS_VIDEOIO_H
  40. #include <sys/videoio.h>
  41. #else
  42. #if HAVE_ASM_TYPES_H
  43. #include <asm/types.h>
  44. #endif
  45. #include <linux/videodev2.h>
  46. #endif
  47. #include "libavutil/atomic.h"
  48. #include "libavutil/avassert.h"
  49. #include "libavutil/imgutils.h"
  50. #include "libavutil/log.h"
  51. #include "libavutil/opt.h"
  52. #include "avdevice.h"
  53. #include "timefilter.h"
  54. #include "libavutil/parseutils.h"
  55. #include "libavutil/pixdesc.h"
  56. #include "libavutil/time.h"
  57. #include "libavutil/avstring.h"
  58. #if CONFIG_LIBV4L2
  59. #include <libv4l2.h>
  60. #else
  61. #define v4l2_open open
  62. #define v4l2_close close
  63. #define v4l2_dup dup
  64. #define v4l2_ioctl ioctl
  65. #define v4l2_read read
  66. #define v4l2_mmap mmap
  67. #define v4l2_munmap munmap
  68. #endif
  69. static const int desired_video_buffers = 256;
  70. #define V4L_ALLFORMATS 3
  71. #define V4L_RAWFORMATS 1
  72. #define V4L_COMPFORMATS 2
  73. /**
  74. * Return timestamps to the user exactly as returned by the kernel
  75. */
  76. #define V4L_TS_DEFAULT 0
  77. /**
  78. * Autodetect the kind of timestamps returned by the kernel and convert to
  79. * absolute (wall clock) timestamps.
  80. */
  81. #define V4L_TS_ABS 1
  82. /**
  83. * Assume kernel timestamps are from the monotonic clock and convert to
  84. * absolute timestamps.
  85. */
  86. #define V4L_TS_MONO2ABS 2
  87. /**
  88. * Once the kind of timestamps returned by the kernel have been detected,
  89. * the value of the timefilter (NULL or not) determines whether a conversion
  90. * takes place.
  91. */
  92. #define V4L_TS_CONVERT_READY V4L_TS_DEFAULT
  93. struct video_data {
  94. AVClass *class;
  95. int fd;
  96. int frame_format; /* V4L2_PIX_FMT_* */
  97. int width, height;
  98. int frame_size;
  99. int interlaced;
  100. int top_field_first;
  101. int ts_mode;
  102. TimeFilter *timefilter;
  103. int64_t last_time_m;
  104. int buffers;
  105. volatile int buffers_queued;
  106. void **buf_start;
  107. unsigned int *buf_len;
  108. char *standard;
  109. v4l2_std_id std_id;
  110. int channel;
  111. char *pixel_format; /**< Set by a private option. */
  112. int list_format; /**< Set by a private option. */
  113. int list_standard; /**< Set by a private option. */
  114. char *framerate; /**< Set by a private option. */
  115. };
  116. struct buff_data {
  117. struct video_data *s;
  118. int index;
  119. };
  120. struct fmt_map {
  121. enum AVPixelFormat ff_fmt;
  122. enum AVCodecID codec_id;
  123. uint32_t v4l2_fmt;
  124. };
  125. static struct fmt_map fmt_conversion_table[] = {
  126. //ff_fmt codec_id v4l2_fmt
  127. { AV_PIX_FMT_YUV420P, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV420 },
  128. { AV_PIX_FMT_YUV420P, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YVU420 },
  129. { AV_PIX_FMT_YUV422P, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV422P },
  130. { AV_PIX_FMT_YUYV422, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUYV },
  131. { AV_PIX_FMT_UYVY422, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_UYVY },
  132. { AV_PIX_FMT_YUV411P, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV411P },
  133. { AV_PIX_FMT_YUV410P, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV410 },
  134. { AV_PIX_FMT_YUV410P, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YVU410 },
  135. { AV_PIX_FMT_RGB555LE,AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB555 },
  136. { AV_PIX_FMT_RGB555BE,AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB555X },
  137. { AV_PIX_FMT_RGB565LE,AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB565 },
  138. { AV_PIX_FMT_RGB565BE,AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB565X },
  139. { AV_PIX_FMT_BGR24, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_BGR24 },
  140. { AV_PIX_FMT_RGB24, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB24 },
  141. { AV_PIX_FMT_BGR0, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_BGR32 },
  142. { AV_PIX_FMT_0RGB, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB32 },
  143. { AV_PIX_FMT_GRAY8, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_GREY },
  144. #ifdef V4L2_PIX_FMT_Y16
  145. { AV_PIX_FMT_GRAY16LE,AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_Y16 },
  146. #endif
  147. { AV_PIX_FMT_NV12, AV_CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_NV12 },
  148. { AV_PIX_FMT_NONE, AV_CODEC_ID_MJPEG, V4L2_PIX_FMT_MJPEG },
  149. { AV_PIX_FMT_NONE, AV_CODEC_ID_MJPEG, V4L2_PIX_FMT_JPEG },
  150. #ifdef V4L2_PIX_FMT_H264
  151. { AV_PIX_FMT_NONE, AV_CODEC_ID_H264, V4L2_PIX_FMT_H264 },
  152. #endif
  153. #ifdef V4L2_PIX_FMT_CPIA1
  154. { AV_PIX_FMT_NONE, AV_CODEC_ID_CPIA, V4L2_PIX_FMT_CPIA1 },
  155. #endif
  156. };
  157. static int device_open(AVFormatContext *ctx)
  158. {
  159. struct v4l2_capability cap;
  160. int fd;
  161. int ret;
  162. int flags = O_RDWR;
  163. if (ctx->flags & AVFMT_FLAG_NONBLOCK) {
  164. flags |= O_NONBLOCK;
  165. }
  166. fd = v4l2_open(ctx->filename, flags, 0);
  167. if (fd < 0) {
  168. ret = AVERROR(errno);
  169. av_log(ctx, AV_LOG_ERROR, "Cannot open video device %s: %s\n",
  170. ctx->filename, av_err2str(ret));
  171. return ret;
  172. }
  173. if (v4l2_ioctl(fd, VIDIOC_QUERYCAP, &cap) < 0) {
  174. ret = AVERROR(errno);
  175. av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QUERYCAP): %s\n",
  176. av_err2str(ret));
  177. goto fail;
  178. }
  179. av_log(ctx, AV_LOG_VERBOSE, "fd:%d capabilities:%x\n",
  180. fd, cap.capabilities);
  181. if (!(cap.capabilities & V4L2_CAP_VIDEO_CAPTURE)) {
  182. av_log(ctx, AV_LOG_ERROR, "Not a video capture device.\n");
  183. ret = AVERROR(ENODEV);
  184. goto fail;
  185. }
  186. if (!(cap.capabilities & V4L2_CAP_STREAMING)) {
  187. av_log(ctx, AV_LOG_ERROR,
  188. "The device does not support the streaming I/O method.\n");
  189. ret = AVERROR(ENOSYS);
  190. goto fail;
  191. }
  192. return fd;
  193. fail:
  194. v4l2_close(fd);
  195. return ret;
  196. }
  197. static int device_init(AVFormatContext *ctx, int *width, int *height,
  198. uint32_t pix_fmt)
  199. {
  200. struct video_data *s = ctx->priv_data;
  201. int fd = s->fd;
  202. struct v4l2_format fmt = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
  203. struct v4l2_pix_format *pix = &fmt.fmt.pix;
  204. int res = 0;
  205. pix->width = *width;
  206. pix->height = *height;
  207. pix->pixelformat = pix_fmt;
  208. pix->field = V4L2_FIELD_ANY;
  209. if (v4l2_ioctl(fd, VIDIOC_S_FMT, &fmt) < 0)
  210. res = AVERROR(errno);
  211. if ((*width != fmt.fmt.pix.width) || (*height != fmt.fmt.pix.height)) {
  212. av_log(ctx, AV_LOG_INFO,
  213. "The V4L2 driver changed the video from %dx%d to %dx%d\n",
  214. *width, *height, fmt.fmt.pix.width, fmt.fmt.pix.height);
  215. *width = fmt.fmt.pix.width;
  216. *height = fmt.fmt.pix.height;
  217. }
  218. if (pix_fmt != fmt.fmt.pix.pixelformat) {
  219. av_log(ctx, AV_LOG_DEBUG,
  220. "The V4L2 driver changed the pixel format "
  221. "from 0x%08X to 0x%08X\n",
  222. pix_fmt, fmt.fmt.pix.pixelformat);
  223. res = AVERROR(EINVAL);
  224. }
  225. if (fmt.fmt.pix.field == V4L2_FIELD_INTERLACED) {
  226. av_log(ctx, AV_LOG_DEBUG,
  227. "The V4L2 driver is using the interlaced mode\n");
  228. s->interlaced = 1;
  229. }
  230. return res;
  231. }
  232. static int first_field(int fd)
  233. {
  234. int res;
  235. v4l2_std_id std;
  236. res = v4l2_ioctl(fd, VIDIOC_G_STD, &std);
  237. if (res < 0) {
  238. return 0;
  239. }
  240. if (std & V4L2_STD_NTSC) {
  241. return 0;
  242. }
  243. return 1;
  244. }
  245. static uint32_t fmt_ff2v4l(enum AVPixelFormat pix_fmt, enum AVCodecID codec_id)
  246. {
  247. int i;
  248. for (i = 0; i < FF_ARRAY_ELEMS(fmt_conversion_table); i++) {
  249. if ((codec_id == AV_CODEC_ID_NONE ||
  250. fmt_conversion_table[i].codec_id == codec_id) &&
  251. (pix_fmt == AV_PIX_FMT_NONE ||
  252. fmt_conversion_table[i].ff_fmt == pix_fmt)) {
  253. return fmt_conversion_table[i].v4l2_fmt;
  254. }
  255. }
  256. return 0;
  257. }
  258. static enum AVPixelFormat fmt_v4l2ff(uint32_t v4l2_fmt, enum AVCodecID codec_id)
  259. {
  260. int i;
  261. for (i = 0; i < FF_ARRAY_ELEMS(fmt_conversion_table); i++) {
  262. if (fmt_conversion_table[i].v4l2_fmt == v4l2_fmt &&
  263. fmt_conversion_table[i].codec_id == codec_id) {
  264. return fmt_conversion_table[i].ff_fmt;
  265. }
  266. }
  267. return AV_PIX_FMT_NONE;
  268. }
  269. static enum AVCodecID fmt_v4l2codec(uint32_t v4l2_fmt)
  270. {
  271. int i;
  272. for (i = 0; i < FF_ARRAY_ELEMS(fmt_conversion_table); i++) {
  273. if (fmt_conversion_table[i].v4l2_fmt == v4l2_fmt) {
  274. return fmt_conversion_table[i].codec_id;
  275. }
  276. }
  277. return AV_CODEC_ID_NONE;
  278. }
  279. #if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE
  280. static void list_framesizes(AVFormatContext *ctx, int fd, uint32_t pixelformat)
  281. {
  282. struct v4l2_frmsizeenum vfse = { .pixel_format = pixelformat };
  283. while(!ioctl(fd, VIDIOC_ENUM_FRAMESIZES, &vfse)) {
  284. switch (vfse.type) {
  285. case V4L2_FRMSIZE_TYPE_DISCRETE:
  286. av_log(ctx, AV_LOG_INFO, " %ux%u",
  287. vfse.discrete.width, vfse.discrete.height);
  288. break;
  289. case V4L2_FRMSIZE_TYPE_CONTINUOUS:
  290. case V4L2_FRMSIZE_TYPE_STEPWISE:
  291. av_log(ctx, AV_LOG_INFO, " {%u-%u, %u}x{%u-%u, %u}",
  292. vfse.stepwise.min_width,
  293. vfse.stepwise.max_width,
  294. vfse.stepwise.step_width,
  295. vfse.stepwise.min_height,
  296. vfse.stepwise.max_height,
  297. vfse.stepwise.step_height);
  298. }
  299. vfse.index++;
  300. }
  301. }
  302. #endif
  303. static void list_formats(AVFormatContext *ctx, int fd, int type)
  304. {
  305. struct v4l2_fmtdesc vfd = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
  306. while(!ioctl(fd, VIDIOC_ENUM_FMT, &vfd)) {
  307. enum AVCodecID codec_id = fmt_v4l2codec(vfd.pixelformat);
  308. enum AVPixelFormat pix_fmt = fmt_v4l2ff(vfd.pixelformat, codec_id);
  309. vfd.index++;
  310. if (!(vfd.flags & V4L2_FMT_FLAG_COMPRESSED) &&
  311. type & V4L_RAWFORMATS) {
  312. const char *fmt_name = av_get_pix_fmt_name(pix_fmt);
  313. av_log(ctx, AV_LOG_INFO, "Raw : %9s : %20s :",
  314. fmt_name ? fmt_name : "Unsupported",
  315. vfd.description);
  316. } else if (vfd.flags & V4L2_FMT_FLAG_COMPRESSED &&
  317. type & V4L_COMPFORMATS) {
  318. AVCodec *codec = avcodec_find_decoder(codec_id);
  319. av_log(ctx, AV_LOG_INFO, "Compressed: %9s : %20s :",
  320. codec ? codec->name : "Unsupported",
  321. vfd.description);
  322. } else {
  323. continue;
  324. }
  325. #ifdef V4L2_FMT_FLAG_EMULATED
  326. if (vfd.flags & V4L2_FMT_FLAG_EMULATED) {
  327. av_log(ctx, AV_LOG_WARNING, "%s", "Emulated");
  328. continue;
  329. }
  330. #endif
  331. #if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE
  332. list_framesizes(ctx, fd, vfd.pixelformat);
  333. #endif
  334. av_log(ctx, AV_LOG_INFO, "\n");
  335. }
  336. }
  337. static void list_standards(AVFormatContext *ctx)
  338. {
  339. int ret;
  340. struct video_data *s = ctx->priv_data;
  341. struct v4l2_standard standard;
  342. if (s->std_id == 0)
  343. return;
  344. for (standard.index = 0; ; standard.index++) {
  345. if (v4l2_ioctl(s->fd, VIDIOC_ENUMSTD, &standard) < 0) {
  346. ret = AVERROR(errno);
  347. if (ret == AVERROR(EINVAL)) {
  348. break;
  349. } else {
  350. av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_ENUMSTD): %s\n", av_err2str(ret));
  351. return;
  352. }
  353. }
  354. av_log(ctx, AV_LOG_INFO, "%2d, %16llx, %s\n",
  355. standard.index, standard.id, standard.name);
  356. }
  357. }
  358. static int mmap_init(AVFormatContext *ctx)
  359. {
  360. int i, res;
  361. struct video_data *s = ctx->priv_data;
  362. struct v4l2_requestbuffers req = {
  363. .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
  364. .count = desired_video_buffers,
  365. .memory = V4L2_MEMORY_MMAP
  366. };
  367. if (v4l2_ioctl(s->fd, VIDIOC_REQBUFS, &req) < 0) {
  368. res = AVERROR(errno);
  369. av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_REQBUFS): %s\n", av_err2str(res));
  370. return res;
  371. }
  372. if (req.count < 2) {
  373. av_log(ctx, AV_LOG_ERROR, "Insufficient buffer memory\n");
  374. return AVERROR(ENOMEM);
  375. }
  376. s->buffers = req.count;
  377. s->buf_start = av_malloc(sizeof(void *) * s->buffers);
  378. if (s->buf_start == NULL) {
  379. av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer pointers\n");
  380. return AVERROR(ENOMEM);
  381. }
  382. s->buf_len = av_malloc(sizeof(unsigned int) * s->buffers);
  383. if (s->buf_len == NULL) {
  384. av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer sizes\n");
  385. av_free(s->buf_start);
  386. return AVERROR(ENOMEM);
  387. }
  388. for (i = 0; i < req.count; i++) {
  389. struct v4l2_buffer buf = {
  390. .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
  391. .index = i,
  392. .memory = V4L2_MEMORY_MMAP
  393. };
  394. if (v4l2_ioctl(s->fd, VIDIOC_QUERYBUF, &buf) < 0) {
  395. res = AVERROR(errno);
  396. av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QUERYBUF): %s\n", av_err2str(res));
  397. return res;
  398. }
  399. s->buf_len[i] = buf.length;
  400. if (s->frame_size > 0 && s->buf_len[i] < s->frame_size) {
  401. av_log(ctx, AV_LOG_ERROR,
  402. "buf_len[%d] = %d < expected frame size %d\n",
  403. i, s->buf_len[i], s->frame_size);
  404. return AVERROR(ENOMEM);
  405. }
  406. s->buf_start[i] = v4l2_mmap(NULL, buf.length,
  407. PROT_READ | PROT_WRITE, MAP_SHARED,
  408. s->fd, buf.m.offset);
  409. if (s->buf_start[i] == MAP_FAILED) {
  410. res = AVERROR(errno);
  411. av_log(ctx, AV_LOG_ERROR, "mmap: %s\n", av_err2str(res));
  412. return res;
  413. }
  414. }
  415. return 0;
  416. }
  417. #if FF_API_DESTRUCT_PACKET
  418. static void dummy_release_buffer(AVPacket *pkt)
  419. {
  420. av_assert0(0);
  421. }
  422. #endif
  423. static void mmap_release_buffer(void *opaque, uint8_t *data)
  424. {
  425. struct v4l2_buffer buf = { 0 };
  426. int res;
  427. struct buff_data *buf_descriptor = opaque;
  428. struct video_data *s = buf_descriptor->s;
  429. buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  430. buf.memory = V4L2_MEMORY_MMAP;
  431. buf.index = buf_descriptor->index;
  432. av_free(buf_descriptor);
  433. if (v4l2_ioctl(s->fd, VIDIOC_QBUF, &buf) < 0) {
  434. res = AVERROR(errno);
  435. av_log(NULL, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n",
  436. av_err2str(res));
  437. }
  438. avpriv_atomic_int_add_and_fetch(&s->buffers_queued, 1);
  439. }
  440. #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
  441. static int64_t av_gettime_monotonic(void)
  442. {
  443. struct timespec tv;
  444. clock_gettime(CLOCK_MONOTONIC, &tv);
  445. return (int64_t)tv.tv_sec * 1000000 + tv.tv_nsec / 1000;
  446. }
  447. #endif
  448. static int init_convert_timestamp(AVFormatContext *ctx, int64_t ts)
  449. {
  450. struct video_data *s = ctx->priv_data;
  451. int64_t now;
  452. now = av_gettime();
  453. if (s->ts_mode == V4L_TS_ABS &&
  454. ts <= now + 1 * AV_TIME_BASE && ts >= now - 10 * AV_TIME_BASE) {
  455. av_log(ctx, AV_LOG_INFO, "Detected absolute timestamps\n");
  456. s->ts_mode = V4L_TS_CONVERT_READY;
  457. return 0;
  458. }
  459. #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
  460. now = av_gettime_monotonic();
  461. if (s->ts_mode == V4L_TS_MONO2ABS ||
  462. (ts <= now + 1 * AV_TIME_BASE && ts >= now - 10 * AV_TIME_BASE)) {
  463. AVRational tb = {AV_TIME_BASE, 1};
  464. int64_t period = av_rescale_q(1, tb, ctx->streams[0]->avg_frame_rate);
  465. av_log(ctx, AV_LOG_INFO, "Detected monotonic timestamps, converting\n");
  466. /* microseconds instead of seconds, MHz instead of Hz */
  467. s->timefilter = ff_timefilter_new(1, period, 1.0E-6);
  468. s->ts_mode = V4L_TS_CONVERT_READY;
  469. return 0;
  470. }
  471. #endif
  472. av_log(ctx, AV_LOG_ERROR, "Unknown timestamps\n");
  473. return AVERROR(EIO);
  474. }
  475. static int convert_timestamp(AVFormatContext *ctx, int64_t *ts)
  476. {
  477. struct video_data *s = ctx->priv_data;
  478. if (s->ts_mode) {
  479. int r = init_convert_timestamp(ctx, *ts);
  480. if (r < 0)
  481. return r;
  482. }
  483. #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
  484. if (s->timefilter) {
  485. int64_t nowa = av_gettime();
  486. int64_t nowm = av_gettime_monotonic();
  487. ff_timefilter_update(s->timefilter, nowa, nowm - s->last_time_m);
  488. s->last_time_m = nowm;
  489. *ts = ff_timefilter_eval(s->timefilter, *ts - nowm);
  490. }
  491. #endif
  492. return 0;
  493. }
  494. static int mmap_read_frame(AVFormatContext *ctx, AVPacket *pkt)
  495. {
  496. struct video_data *s = ctx->priv_data;
  497. struct v4l2_buffer buf = {
  498. .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
  499. .memory = V4L2_MEMORY_MMAP
  500. };
  501. int res;
  502. /* FIXME: Some special treatment might be needed in case of loss of signal... */
  503. while ((res = v4l2_ioctl(s->fd, VIDIOC_DQBUF, &buf)) < 0 && (errno == EINTR));
  504. if (res < 0) {
  505. if (errno == EAGAIN) {
  506. pkt->size = 0;
  507. return AVERROR(EAGAIN);
  508. }
  509. res = AVERROR(errno);
  510. av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_DQBUF): %s\n", av_err2str(res));
  511. return res;
  512. }
  513. if (buf.index >= s->buffers) {
  514. av_log(ctx, AV_LOG_ERROR, "Invalid buffer index received.\n");
  515. return AVERROR(EINVAL);
  516. }
  517. avpriv_atomic_int_add_and_fetch(&s->buffers_queued, -1);
  518. // always keep at least one buffer queued
  519. av_assert0(avpriv_atomic_int_get(&s->buffers_queued) >= 1);
  520. /* CPIA is a compressed format and we don't know the exact number of bytes
  521. * used by a frame, so set it here as the driver announces it.
  522. */
  523. if (ctx->video_codec_id == AV_CODEC_ID_CPIA)
  524. s->frame_size = buf.bytesused;
  525. if (s->frame_size > 0 && buf.bytesused != s->frame_size) {
  526. av_log(ctx, AV_LOG_ERROR,
  527. "The v4l2 frame is %d bytes, but %d bytes are expected\n",
  528. buf.bytesused, s->frame_size);
  529. return AVERROR_INVALIDDATA;
  530. }
  531. /* Image is at s->buff_start[buf.index] */
  532. if (avpriv_atomic_int_get(&s->buffers_queued) == FFMAX(s->buffers / 8, 1)) {
  533. /* when we start getting low on queued buffers, fallback to copying data */
  534. res = av_new_packet(pkt, buf.bytesused);
  535. if (res < 0) {
  536. av_log(ctx, AV_LOG_ERROR, "Error allocating a packet.\n");
  537. if (v4l2_ioctl(s->fd, VIDIOC_QBUF, &buf) == 0)
  538. avpriv_atomic_int_add_and_fetch(&s->buffers_queued, 1);
  539. return res;
  540. }
  541. memcpy(pkt->data, s->buf_start[buf.index], buf.bytesused);
  542. if (v4l2_ioctl(s->fd, VIDIOC_QBUF, &buf) < 0) {
  543. res = AVERROR(errno);
  544. av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n", av_err2str(res));
  545. av_free_packet(pkt);
  546. return res;
  547. }
  548. avpriv_atomic_int_add_and_fetch(&s->buffers_queued, 1);
  549. } else {
  550. struct buff_data *buf_descriptor;
  551. pkt->data = s->buf_start[buf.index];
  552. pkt->size = buf.bytesused;
  553. #if FF_API_DESTRUCT_PACKET
  554. pkt->destruct = dummy_release_buffer;
  555. #endif
  556. buf_descriptor = av_malloc(sizeof(struct buff_data));
  557. if (buf_descriptor == NULL) {
  558. /* Something went wrong... Since av_malloc() failed, we cannot even
  559. * allocate a buffer for memcpying into it
  560. */
  561. av_log(ctx, AV_LOG_ERROR, "Failed to allocate a buffer descriptor\n");
  562. if (v4l2_ioctl(s->fd, VIDIOC_QBUF, &buf) == 0)
  563. avpriv_atomic_int_add_and_fetch(&s->buffers_queued, 1);
  564. return AVERROR(ENOMEM);
  565. }
  566. buf_descriptor->index = buf.index;
  567. buf_descriptor->s = s;
  568. pkt->buf = av_buffer_create(pkt->data, pkt->size, mmap_release_buffer,
  569. buf_descriptor, 0);
  570. if (!pkt->buf) {
  571. av_log(ctx, AV_LOG_ERROR, "Failed to create a buffer\n");
  572. if (v4l2_ioctl(s->fd, VIDIOC_QBUF, &buf) == 0)
  573. avpriv_atomic_int_add_and_fetch(&s->buffers_queued, 1);
  574. av_freep(&buf_descriptor);
  575. return AVERROR(ENOMEM);
  576. }
  577. }
  578. pkt->pts = buf.timestamp.tv_sec * INT64_C(1000000) + buf.timestamp.tv_usec;
  579. convert_timestamp(ctx, &pkt->pts);
  580. return s->buf_len[buf.index];
  581. }
  582. static int mmap_start(AVFormatContext *ctx)
  583. {
  584. struct video_data *s = ctx->priv_data;
  585. enum v4l2_buf_type type;
  586. int i, res;
  587. for (i = 0; i < s->buffers; i++) {
  588. struct v4l2_buffer buf = {
  589. .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
  590. .index = i,
  591. .memory = V4L2_MEMORY_MMAP
  592. };
  593. if (v4l2_ioctl(s->fd, VIDIOC_QBUF, &buf) < 0) {
  594. res = AVERROR(errno);
  595. av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n", av_err2str(res));
  596. return res;
  597. }
  598. }
  599. s->buffers_queued = s->buffers;
  600. type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  601. if (v4l2_ioctl(s->fd, VIDIOC_STREAMON, &type) < 0) {
  602. res = AVERROR(errno);
  603. av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_STREAMON): %s\n", av_err2str(res));
  604. return res;
  605. }
  606. return 0;
  607. }
  608. static void mmap_close(struct video_data *s)
  609. {
  610. enum v4l2_buf_type type;
  611. int i;
  612. type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  613. /* We do not check for the result, because we could
  614. * not do anything about it anyway...
  615. */
  616. v4l2_ioctl(s->fd, VIDIOC_STREAMOFF, &type);
  617. for (i = 0; i < s->buffers; i++) {
  618. v4l2_munmap(s->buf_start[i], s->buf_len[i]);
  619. }
  620. av_free(s->buf_start);
  621. av_free(s->buf_len);
  622. }
  623. static int v4l2_set_parameters(AVFormatContext *s1)
  624. {
  625. struct video_data *s = s1->priv_data;
  626. struct v4l2_standard standard = { 0 };
  627. struct v4l2_streamparm streamparm = { 0 };
  628. struct v4l2_fract *tpf;
  629. AVRational framerate_q = { 0 };
  630. int i, ret;
  631. if (s->framerate &&
  632. (ret = av_parse_video_rate(&framerate_q, s->framerate)) < 0) {
  633. av_log(s1, AV_LOG_ERROR, "Could not parse framerate '%s'.\n",
  634. s->framerate);
  635. return ret;
  636. }
  637. if (s->standard) {
  638. if (s->std_id) {
  639. ret = 0;
  640. av_log(s1, AV_LOG_DEBUG, "Setting standard: %s\n", s->standard);
  641. /* set tv standard */
  642. for (i = 0; ; i++) {
  643. standard.index = i;
  644. if (v4l2_ioctl(s->fd, VIDIOC_ENUMSTD, &standard) < 0) {
  645. ret = AVERROR(errno);
  646. break;
  647. }
  648. if (!av_strcasecmp(standard.name, s->standard))
  649. break;
  650. }
  651. if (ret < 0) {
  652. av_log(s1, AV_LOG_ERROR, "Unknown or unsupported standard '%s'\n", s->standard);
  653. return ret;
  654. }
  655. if (v4l2_ioctl(s->fd, VIDIOC_S_STD, &standard.id) < 0) {
  656. ret = AVERROR(errno);
  657. av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_S_STD): %s\n", av_err2str(ret));
  658. return ret;
  659. }
  660. } else {
  661. av_log(s1, AV_LOG_WARNING,
  662. "This device does not support any standard\n");
  663. }
  664. }
  665. /* get standard */
  666. if (v4l2_ioctl(s->fd, VIDIOC_G_STD, &s->std_id) == 0) {
  667. tpf = &standard.frameperiod;
  668. for (i = 0; ; i++) {
  669. standard.index = i;
  670. if (v4l2_ioctl(s->fd, VIDIOC_ENUMSTD, &standard) < 0) {
  671. ret = AVERROR(errno);
  672. av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_ENUMSTD): %s\n", av_err2str(ret));
  673. return ret;
  674. }
  675. if (standard.id == s->std_id) {
  676. av_log(s1, AV_LOG_DEBUG,
  677. "Current standard: %s, id: %"PRIu64", frameperiod: %d/%d\n",
  678. standard.name, (uint64_t)standard.id, tpf->numerator, tpf->denominator);
  679. break;
  680. }
  681. }
  682. } else {
  683. tpf = &streamparm.parm.capture.timeperframe;
  684. }
  685. streamparm.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  686. if (v4l2_ioctl(s->fd, VIDIOC_G_PARM, &streamparm) < 0) {
  687. ret = AVERROR(errno);
  688. av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_G_PARM): %s\n", av_err2str(ret));
  689. return ret;
  690. }
  691. if (framerate_q.num && framerate_q.den) {
  692. if (streamparm.parm.capture.capability & V4L2_CAP_TIMEPERFRAME) {
  693. tpf = &streamparm.parm.capture.timeperframe;
  694. av_log(s1, AV_LOG_DEBUG, "Setting time per frame to %d/%d\n",
  695. framerate_q.den, framerate_q.num);
  696. tpf->numerator = framerate_q.den;
  697. tpf->denominator = framerate_q.num;
  698. if (v4l2_ioctl(s->fd, VIDIOC_S_PARM, &streamparm) < 0) {
  699. ret = AVERROR(errno);
  700. av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_S_PARM): %s\n", av_err2str(ret));
  701. return ret;
  702. }
  703. if (framerate_q.num != tpf->denominator ||
  704. framerate_q.den != tpf->numerator) {
  705. av_log(s1, AV_LOG_INFO,
  706. "The driver changed the time per frame from "
  707. "%d/%d to %d/%d\n",
  708. framerate_q.den, framerate_q.num,
  709. tpf->numerator, tpf->denominator);
  710. }
  711. } else {
  712. av_log(s1, AV_LOG_WARNING,
  713. "The driver does not allow to change time per frame\n");
  714. }
  715. }
  716. s1->streams[0]->avg_frame_rate.num = tpf->denominator;
  717. s1->streams[0]->avg_frame_rate.den = tpf->numerator;
  718. s1->streams[0]->r_frame_rate = s1->streams[0]->avg_frame_rate;
  719. return 0;
  720. }
  721. static int device_try_init(AVFormatContext *s1,
  722. enum AVPixelFormat pix_fmt,
  723. int *width,
  724. int *height,
  725. uint32_t *desired_format,
  726. enum AVCodecID *codec_id)
  727. {
  728. int ret, i;
  729. *desired_format = fmt_ff2v4l(pix_fmt, s1->video_codec_id);
  730. if (*desired_format) {
  731. ret = device_init(s1, width, height, *desired_format);
  732. if (ret < 0) {
  733. *desired_format = 0;
  734. if (ret != AVERROR(EINVAL))
  735. return ret;
  736. }
  737. }
  738. if (!*desired_format) {
  739. for (i = 0; i<FF_ARRAY_ELEMS(fmt_conversion_table); i++) {
  740. if (s1->video_codec_id == AV_CODEC_ID_NONE ||
  741. fmt_conversion_table[i].codec_id == s1->video_codec_id) {
  742. av_log(s1, AV_LOG_DEBUG, "Trying to set codec:%s pix_fmt:%s\n",
  743. avcodec_get_name(fmt_conversion_table[i].codec_id),
  744. (char *)av_x_if_null(av_get_pix_fmt_name(fmt_conversion_table[i].ff_fmt), "none"));
  745. *desired_format = fmt_conversion_table[i].v4l2_fmt;
  746. ret = device_init(s1, width, height, *desired_format);
  747. if (ret >= 0)
  748. break;
  749. else if (ret != AVERROR(EINVAL))
  750. return ret;
  751. *desired_format = 0;
  752. }
  753. }
  754. if (*desired_format == 0) {
  755. av_log(s1, AV_LOG_ERROR, "Cannot find a proper format for "
  756. "codec '%s' (id %d), pixel format '%s' (id %d)\n",
  757. avcodec_get_name(s1->video_codec_id), s1->video_codec_id,
  758. (char *)av_x_if_null(av_get_pix_fmt_name(pix_fmt), "none"), pix_fmt);
  759. ret = AVERROR(EINVAL);
  760. }
  761. }
  762. *codec_id = fmt_v4l2codec(*desired_format);
  763. av_assert0(*codec_id != AV_CODEC_ID_NONE);
  764. return ret;
  765. }
  766. static int v4l2_read_header(AVFormatContext *s1)
  767. {
  768. struct video_data *s = s1->priv_data;
  769. AVStream *st;
  770. int res = 0;
  771. uint32_t desired_format;
  772. enum AVCodecID codec_id = AV_CODEC_ID_NONE;
  773. enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE;
  774. struct v4l2_input input = { 0 };
  775. st = avformat_new_stream(s1, NULL);
  776. if (!st)
  777. return AVERROR(ENOMEM);
  778. s->fd = device_open(s1);
  779. if (s->fd < 0)
  780. return s->fd;
  781. /* set tv video input */
  782. av_log(s1, AV_LOG_DEBUG, "Selecting input_channel: %d\n", s->channel);
  783. if (v4l2_ioctl(s->fd, VIDIOC_S_INPUT, &s->channel) < 0) {
  784. res = AVERROR(errno);
  785. av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_S_INPUT): %s\n", av_err2str(res));
  786. return res;
  787. }
  788. input.index = s->channel;
  789. if (v4l2_ioctl(s->fd, VIDIOC_ENUMINPUT, &input) < 0) {
  790. res = AVERROR(errno);
  791. av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_ENUMINPUT): %s\n", av_err2str(res));
  792. return res;
  793. }
  794. s->std_id = input.std;
  795. av_log(s1, AV_LOG_DEBUG, "input_channel: %d, input_name: %s\n",
  796. s->channel, input.name);
  797. if (s->list_format) {
  798. list_formats(s1, s->fd, s->list_format);
  799. return AVERROR_EXIT;
  800. }
  801. if (s->list_standard) {
  802. list_standards(s1);
  803. return AVERROR_EXIT;
  804. }
  805. avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
  806. if (s->pixel_format) {
  807. AVCodec *codec = avcodec_find_decoder_by_name(s->pixel_format);
  808. if (codec)
  809. s1->video_codec_id = codec->id;
  810. pix_fmt = av_get_pix_fmt(s->pixel_format);
  811. if (pix_fmt == AV_PIX_FMT_NONE && !codec) {
  812. av_log(s1, AV_LOG_ERROR, "No such input format: %s.\n",
  813. s->pixel_format);
  814. return AVERROR(EINVAL);
  815. }
  816. }
  817. if (!s->width && !s->height) {
  818. struct v4l2_format fmt;
  819. av_log(s1, AV_LOG_VERBOSE,
  820. "Querying the device for the current frame size\n");
  821. fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  822. if (v4l2_ioctl(s->fd, VIDIOC_G_FMT, &fmt) < 0) {
  823. res = AVERROR(errno);
  824. av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_G_FMT): %s\n", av_err2str(res));
  825. return res;
  826. }
  827. s->width = fmt.fmt.pix.width;
  828. s->height = fmt.fmt.pix.height;
  829. av_log(s1, AV_LOG_VERBOSE,
  830. "Setting frame size to %dx%d\n", s->width, s->height);
  831. }
  832. res = device_try_init(s1, pix_fmt, &s->width, &s->height, &desired_format, &codec_id);
  833. if (res < 0) {
  834. v4l2_close(s->fd);
  835. return res;
  836. }
  837. /* If no pixel_format was specified, the codec_id was not known up
  838. * until now. Set video_codec_id in the context, as codec_id will
  839. * not be available outside this function
  840. */
  841. if (codec_id != AV_CODEC_ID_NONE && s1->video_codec_id == AV_CODEC_ID_NONE)
  842. s1->video_codec_id = codec_id;
  843. if ((res = av_image_check_size(s->width, s->height, 0, s1)) < 0)
  844. return res;
  845. s->frame_format = desired_format;
  846. if ((res = v4l2_set_parameters(s1)) < 0)
  847. return res;
  848. st->codec->pix_fmt = fmt_v4l2ff(desired_format, codec_id);
  849. s->frame_size =
  850. avpicture_get_size(st->codec->pix_fmt, s->width, s->height);
  851. if ((res = mmap_init(s1)) ||
  852. (res = mmap_start(s1)) < 0) {
  853. v4l2_close(s->fd);
  854. return res;
  855. }
  856. s->top_field_first = first_field(s->fd);
  857. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  858. st->codec->codec_id = codec_id;
  859. if (codec_id == AV_CODEC_ID_RAWVIDEO)
  860. st->codec->codec_tag =
  861. avcodec_pix_fmt_to_codec_tag(st->codec->pix_fmt);
  862. if (desired_format == V4L2_PIX_FMT_YVU420)
  863. st->codec->codec_tag = MKTAG('Y', 'V', '1', '2');
  864. else if (desired_format == V4L2_PIX_FMT_YVU410)
  865. st->codec->codec_tag = MKTAG('Y', 'V', 'U', '9');
  866. st->codec->width = s->width;
  867. st->codec->height = s->height;
  868. st->codec->bit_rate = s->frame_size * av_q2d(st->avg_frame_rate) * 8;
  869. return 0;
  870. }
  871. static int v4l2_read_packet(AVFormatContext *s1, AVPacket *pkt)
  872. {
  873. struct video_data *s = s1->priv_data;
  874. AVFrame *frame = s1->streams[0]->codec->coded_frame;
  875. int res;
  876. av_init_packet(pkt);
  877. if ((res = mmap_read_frame(s1, pkt)) < 0) {
  878. return res;
  879. }
  880. if (frame && s->interlaced) {
  881. frame->interlaced_frame = 1;
  882. frame->top_field_first = s->top_field_first;
  883. }
  884. return pkt->size;
  885. }
  886. static int v4l2_read_close(AVFormatContext *s1)
  887. {
  888. struct video_data *s = s1->priv_data;
  889. if (avpriv_atomic_int_get(&s->buffers_queued) != s->buffers)
  890. av_log(s1, AV_LOG_WARNING, "Some buffers are still owned by the caller on "
  891. "close.\n");
  892. mmap_close(s);
  893. v4l2_close(s->fd);
  894. return 0;
  895. }
  896. #define OFFSET(x) offsetof(struct video_data, x)
  897. #define DEC AV_OPT_FLAG_DECODING_PARAM
  898. static const AVOption options[] = {
  899. { "standard", "set TV standard, used only by analog frame grabber", OFFSET(standard), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC },
  900. { "channel", "set TV channel, used only by frame grabber", OFFSET(channel), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, DEC },
  901. { "video_size", "set frame size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
  902. { "pixel_format", "set preferred pixel format", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
  903. { "input_format", "set preferred pixel format (for raw video) or codec name", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
  904. { "framerate", "set frame rate", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
  905. { "list_formats", "list available formats and exit", OFFSET(list_format), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, DEC, "list_formats" },
  906. { "all", "show all available formats", OFFSET(list_format), AV_OPT_TYPE_CONST, {.i64 = V4L_ALLFORMATS }, 0, INT_MAX, DEC, "list_formats" },
  907. { "raw", "show only non-compressed formats", OFFSET(list_format), AV_OPT_TYPE_CONST, {.i64 = V4L_RAWFORMATS }, 0, INT_MAX, DEC, "list_formats" },
  908. { "compressed", "show only compressed formats", OFFSET(list_format), AV_OPT_TYPE_CONST, {.i64 = V4L_COMPFORMATS }, 0, INT_MAX, DEC, "list_formats" },
  909. { "list_standards", "list supported standards and exit", OFFSET(list_standard), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 1, DEC, "list_standards" },
  910. { "all", "show all supported standards", OFFSET(list_standard), AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, DEC, "list_standards" },
  911. { "timestamps", "set type of timestamps for grabbed frames", OFFSET(ts_mode), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 2, DEC, "timestamps" },
  912. { "ts", "set type of timestamps for grabbed frames", OFFSET(ts_mode), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 2, DEC, "timestamps" },
  913. { "default", "use timestamps from the kernel", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_DEFAULT }, 0, 2, DEC, "timestamps" },
  914. { "abs", "use absolute timestamps (wall clock)", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_ABS }, 0, 2, DEC, "timestamps" },
  915. { "mono2abs", "force conversion from monotonic to absolute timestamps", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_MONO2ABS }, 0, 2, DEC, "timestamps" },
  916. { NULL },
  917. };
  918. static const AVClass v4l2_class = {
  919. .class_name = "V4L2 indev",
  920. .item_name = av_default_item_name,
  921. .option = options,
  922. .version = LIBAVUTIL_VERSION_INT,
  923. };
  924. AVInputFormat ff_v4l2_demuxer = {
  925. .name = "video4linux2,v4l2",
  926. .long_name = NULL_IF_CONFIG_SMALL("Video4Linux2 device grab"),
  927. .priv_data_size = sizeof(struct video_data),
  928. .read_header = v4l2_read_header,
  929. .read_packet = v4l2_read_packet,
  930. .read_close = v4l2_read_close,
  931. .flags = AVFMT_NOFILE,
  932. .priv_class = &v4l2_class,
  933. };