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.

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