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.

328 lines
8.7KB

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