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.

370 lines
11KB

  1. /*
  2. * *BSD video grab interface
  3. * Copyright (c) 2002 Steve O'Hara-Smith
  4. * based on
  5. * Linux video grab interface
  6. * Copyright (c) 2000,2001 Gerard Lantau
  7. * and
  8. * simple_grab.c Copyright (c) 1999 Roger Hardiman
  9. *
  10. * This file is part of Libav.
  11. *
  12. * Libav is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU Lesser General Public
  14. * License as published by the Free Software Foundation; either
  15. * version 2.1 of the License, or (at your option) any later version.
  16. *
  17. * Libav is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  20. * Lesser General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Lesser General Public
  23. * License along with Libav; if not, write to the Free Software
  24. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  25. */
  26. #include "libavformat/avformat.h"
  27. #include "libavformat/internal.h"
  28. #include "libavutil/internal.h"
  29. #include "libavutil/log.h"
  30. #include "libavutil/opt.h"
  31. #include "libavutil/parseutils.h"
  32. #include "libavutil/time.h"
  33. #if HAVE_DEV_BKTR_IOCTL_METEOR_H && HAVE_DEV_BKTR_IOCTL_BT848_H
  34. # include <dev/bktr/ioctl_meteor.h>
  35. # include <dev/bktr/ioctl_bt848.h>
  36. #elif HAVE_MACHINE_IOCTL_METEOR_H && HAVE_MACHINE_IOCTL_BT848_H
  37. # include <machine/ioctl_meteor.h>
  38. # include <machine/ioctl_bt848.h>
  39. #elif HAVE_DEV_VIDEO_METEOR_IOCTL_METEOR_H && HAVE_DEV_VIDEO_BKTR_IOCTL_BT848_H
  40. # include <dev/video/meteor/ioctl_meteor.h>
  41. # include <dev/video/bktr/ioctl_bt848.h>
  42. #elif HAVE_DEV_IC_BT8XX_H
  43. # include <dev/ic/bt8xx.h>
  44. #endif
  45. #include <unistd.h>
  46. #include <fcntl.h>
  47. #include <sys/ioctl.h>
  48. #include <sys/mman.h>
  49. #include <sys/time.h>
  50. #include <signal.h>
  51. #include <stdint.h>
  52. typedef struct VideoData {
  53. AVClass *class;
  54. int video_fd;
  55. int tuner_fd;
  56. int width, height;
  57. uint64_t per_frame;
  58. int standard;
  59. char *video_size; /**< String describing video size, set by a private option. */
  60. char *framerate; /**< Set by a private option. */
  61. } VideoData;
  62. #define PAL 1
  63. #define PALBDGHI 1
  64. #define NTSC 2
  65. #define NTSCM 2
  66. #define SECAM 3
  67. #define PALN 4
  68. #define PALM 5
  69. #define NTSCJ 6
  70. /* PAL is 768 x 576. NTSC is 640 x 480 */
  71. #define PAL_HEIGHT 576
  72. #define SECAM_HEIGHT 576
  73. #define NTSC_HEIGHT 480
  74. #ifndef VIDEO_FORMAT
  75. #define VIDEO_FORMAT NTSC
  76. #endif
  77. static int bktr_dev[] = { METEOR_DEV0, METEOR_DEV1, METEOR_DEV2,
  78. METEOR_DEV3, METEOR_DEV_SVIDEO };
  79. uint8_t *video_buf;
  80. size_t video_buf_size;
  81. uint64_t last_frame_time;
  82. volatile sig_atomic_t nsignals;
  83. static void catchsignal(int signal)
  84. {
  85. nsignals++;
  86. return;
  87. }
  88. static av_cold int bktr_init(const char *video_device, int width, int height,
  89. int format, int *video_fd, int *tuner_fd, int idev, double frequency)
  90. {
  91. struct meteor_geomet geo;
  92. int h_max;
  93. long ioctl_frequency;
  94. char *arg;
  95. int c;
  96. struct sigaction act = { 0 }, old;
  97. int ret;
  98. char errbuf[128];
  99. if (idev < 0 || idev > 4)
  100. {
  101. arg = getenv ("BKTR_DEV");
  102. if (arg)
  103. idev = atoi (arg);
  104. if (idev < 0 || idev > 4)
  105. idev = 1;
  106. }
  107. if (format < 1 || format > 6)
  108. {
  109. arg = getenv ("BKTR_FORMAT");
  110. if (arg)
  111. format = atoi (arg);
  112. if (format < 1 || format > 6)
  113. format = VIDEO_FORMAT;
  114. }
  115. if (frequency <= 0)
  116. {
  117. arg = getenv ("BKTR_FREQUENCY");
  118. if (arg)
  119. frequency = atof (arg);
  120. if (frequency <= 0)
  121. frequency = 0.0;
  122. }
  123. sigemptyset(&act.sa_mask);
  124. act.sa_handler = catchsignal;
  125. sigaction(SIGUSR1, &act, &old);
  126. *tuner_fd = avpriv_open("/dev/tuner0", O_RDONLY);
  127. if (*tuner_fd < 0)
  128. av_log(NULL, AV_LOG_ERROR, "Warning. Tuner not opened, continuing: %s\n", strerror(errno));
  129. *video_fd = avpriv_open(video_device, O_RDONLY);
  130. if (*video_fd < 0) {
  131. ret = AVERROR(errno);
  132. av_strerror(ret, errbuf, sizeof(errbuf));
  133. av_log(NULL, AV_LOG_ERROR, "%s: %s\n", video_device, errbuf);
  134. return ret;
  135. }
  136. geo.rows = height;
  137. geo.columns = width;
  138. geo.frames = 1;
  139. geo.oformat = METEOR_GEO_YUV_422 | METEOR_GEO_YUV_12;
  140. switch (format) {
  141. case PAL: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALBDGHI; break;
  142. case PALN: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALN; break;
  143. case PALM: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALM; break;
  144. case SECAM: h_max = SECAM_HEIGHT; c = BT848_IFORM_F_SECAM; break;
  145. case NTSC: h_max = NTSC_HEIGHT; c = BT848_IFORM_F_NTSCM; break;
  146. case NTSCJ: h_max = NTSC_HEIGHT; c = BT848_IFORM_F_NTSCJ; break;
  147. default: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALBDGHI; break;
  148. }
  149. if (height <= h_max / 2)
  150. geo.oformat |= METEOR_GEO_EVEN_ONLY;
  151. if (ioctl(*video_fd, METEORSETGEO, &geo) < 0) {
  152. ret = AVERROR(errno);
  153. av_strerror(ret, errbuf, sizeof(errbuf));
  154. av_log(NULL, AV_LOG_ERROR, "METEORSETGEO: %s\n", errbuf);
  155. return ret;
  156. }
  157. if (ioctl(*video_fd, BT848SFMT, &c) < 0) {
  158. ret = AVERROR(errno);
  159. av_strerror(ret, errbuf, sizeof(errbuf));
  160. av_log(NULL, AV_LOG_ERROR, "BT848SFMT: %s\n", errbuf);
  161. return ret;
  162. }
  163. c = bktr_dev[idev];
  164. if (ioctl(*video_fd, METEORSINPUT, &c) < 0) {
  165. ret = AVERROR(errno);
  166. av_strerror(ret, errbuf, sizeof(errbuf));
  167. av_log(NULL, AV_LOG_ERROR, "METEORSINPUT: %s\n", errbuf);
  168. return ret;
  169. }
  170. video_buf_size = width * height * 12 / 8;
  171. video_buf = (uint8_t *)mmap((caddr_t)0, video_buf_size,
  172. PROT_READ, MAP_SHARED, *video_fd, (off_t)0);
  173. if (video_buf == MAP_FAILED) {
  174. ret = AVERROR(errno);
  175. av_strerror(ret, errbuf, sizeof(errbuf));
  176. av_log(NULL, AV_LOG_ERROR, "mmap: %s\n", errbuf);
  177. return ret;
  178. }
  179. if (frequency != 0.0) {
  180. ioctl_frequency = (unsigned long)(frequency*16);
  181. if (ioctl(*tuner_fd, TVTUNER_SETFREQ, &ioctl_frequency) < 0)
  182. av_log(NULL, AV_LOG_ERROR, "TVTUNER_SETFREQ: %s\n", strerror(errno));
  183. }
  184. c = AUDIO_UNMUTE;
  185. if (ioctl(*tuner_fd, BT848_SAUDIO, &c) < 0)
  186. av_log(NULL, AV_LOG_ERROR, "TVTUNER_SAUDIO: %s\n", strerror(errno));
  187. c = METEOR_CAP_CONTINOUS;
  188. ioctl(*video_fd, METEORCAPTUR, &c);
  189. c = SIGUSR1;
  190. ioctl(*video_fd, METEORSSIGNAL, &c);
  191. return 0;
  192. }
  193. static void bktr_getframe(uint64_t per_frame)
  194. {
  195. uint64_t curtime;
  196. curtime = av_gettime();
  197. if (!last_frame_time
  198. || ((last_frame_time + per_frame) > curtime)) {
  199. if (!usleep(last_frame_time + per_frame + per_frame / 8 - curtime)) {
  200. if (!nsignals)
  201. av_log(NULL, AV_LOG_INFO,
  202. "SLEPT NO signals - %d microseconds late\n",
  203. (int)(av_gettime() - last_frame_time - per_frame));
  204. }
  205. }
  206. nsignals = 0;
  207. last_frame_time = curtime;
  208. }
  209. /* note: we support only one picture read at a time */
  210. static int grab_read_packet(AVFormatContext *s1, AVPacket *pkt)
  211. {
  212. VideoData *s = s1->priv_data;
  213. if (av_new_packet(pkt, video_buf_size) < 0)
  214. return AVERROR(EIO);
  215. bktr_getframe(s->per_frame);
  216. pkt->pts = av_gettime();
  217. memcpy(pkt->data, video_buf, video_buf_size);
  218. return video_buf_size;
  219. }
  220. static int grab_read_header(AVFormatContext *s1)
  221. {
  222. VideoData *s = s1->priv_data;
  223. AVStream *st;
  224. int width, height;
  225. AVRational framerate;
  226. int ret = 0;
  227. if ((ret = av_parse_video_size(&width, &height, s->video_size)) < 0) {
  228. av_log(s1, AV_LOG_ERROR, "Could not parse video size '%s'.\n", s->video_size);
  229. goto out;
  230. }
  231. if (!s->framerate)
  232. switch (s->standard) {
  233. case PAL: s->framerate = av_strdup("pal"); break;
  234. case NTSC: s->framerate = av_strdup("ntsc"); break;
  235. case SECAM: s->framerate = av_strdup("25"); break;
  236. default:
  237. av_log(s1, AV_LOG_ERROR, "Unknown standard.\n");
  238. ret = AVERROR(EINVAL);
  239. goto out;
  240. }
  241. if ((ret = av_parse_video_rate(&framerate, s->framerate)) < 0) {
  242. av_log(s1, AV_LOG_ERROR, "Could not parse framerate '%s'.\n", s->framerate);
  243. goto out;
  244. }
  245. st = avformat_new_stream(s1, NULL);
  246. if (!st) {
  247. ret = AVERROR(ENOMEM);
  248. goto out;
  249. }
  250. avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in use */
  251. s->width = width;
  252. s->height = height;
  253. s->per_frame = ((uint64_t)1000000 * framerate.den) / framerate.num;
  254. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  255. st->codec->pix_fmt = AV_PIX_FMT_YUV420P;
  256. st->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
  257. st->codec->width = width;
  258. st->codec->height = height;
  259. st->codec->time_base.den = framerate.num;
  260. st->codec->time_base.num = framerate.den;
  261. if (bktr_init(s1->filename, width, height, s->standard,
  262. &s->video_fd, &s->tuner_fd, -1, 0.0) < 0) {
  263. ret = AVERROR(EIO);
  264. goto out;
  265. }
  266. nsignals = 0;
  267. last_frame_time = 0;
  268. out:
  269. return ret;
  270. }
  271. static int grab_read_close(AVFormatContext *s1)
  272. {
  273. VideoData *s = s1->priv_data;
  274. int c;
  275. c = METEOR_CAP_STOP_CONT;
  276. ioctl(s->video_fd, METEORCAPTUR, &c);
  277. close(s->video_fd);
  278. c = AUDIO_MUTE;
  279. ioctl(s->tuner_fd, BT848_SAUDIO, &c);
  280. close(s->tuner_fd);
  281. munmap((caddr_t)video_buf, video_buf_size);
  282. return 0;
  283. }
  284. #define OFFSET(x) offsetof(VideoData, x)
  285. #define DEC AV_OPT_FLAG_DECODING_PARAM
  286. static const AVOption options[] = {
  287. { "standard", "", offsetof(VideoData, standard), AV_OPT_TYPE_INT, {.i64 = VIDEO_FORMAT}, PAL, NTSCJ, AV_OPT_FLAG_DECODING_PARAM, "standard" },
  288. { "PAL", "", 0, AV_OPT_TYPE_CONST, {.i64 = PAL}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
  289. { "NTSC", "", 0, AV_OPT_TYPE_CONST, {.i64 = NTSC}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
  290. { "SECAM", "", 0, AV_OPT_TYPE_CONST, {.i64 = SECAM}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
  291. { "PALN", "", 0, AV_OPT_TYPE_CONST, {.i64 = PALN}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
  292. { "PALM", "", 0, AV_OPT_TYPE_CONST, {.i64 = PALM}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
  293. { "NTSCJ", "", 0, AV_OPT_TYPE_CONST, {.i64 = NTSCJ}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
  294. { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = "vga"}, 0, 0, DEC },
  295. { "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
  296. { NULL },
  297. };
  298. static const AVClass bktr_class = {
  299. .class_name = "BKTR grab interface",
  300. .item_name = av_default_item_name,
  301. .option = options,
  302. .version = LIBAVUTIL_VERSION_INT,
  303. };
  304. AVInputFormat ff_bktr_demuxer = {
  305. .name = "bktr",
  306. .long_name = NULL_IF_CONFIG_SMALL("video grab"),
  307. .priv_data_size = sizeof(VideoData),
  308. .read_header = grab_read_header,
  309. .read_packet = grab_read_packet,
  310. .read_close = grab_read_close,
  311. .flags = AVFMT_NOFILE,
  312. .priv_class = &bktr_class,
  313. };