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.

332 lines
8.3KB

  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 library is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2 of the License, or (at your option) any later version.
  14. *
  15. * This library is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with this library; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. */
  24. #include "avformat.h"
  25. #if defined(__FreeBSD__)
  26. # if __FreeBSD__ >= 502100
  27. # include <dev/bktr/ioctl_meteor.h>
  28. # include <dev/bktr/ioctl_bt848.h>
  29. # else
  30. # include <machine/ioctl_meteor.h>
  31. # include <machine/ioctl_bt848.h>
  32. # endif
  33. #elseif defined(__DragonFly__)
  34. # include <dev/video/meteor/ioctl_meteor.h>
  35. # include <dev/video/bktr/ioctl_bt848.h>
  36. #else
  37. # include <dev/ic/bt8xx.h>
  38. #endif
  39. #include <unistd.h>
  40. #include <fcntl.h>
  41. #include <sys/ioctl.h>
  42. #include <sys/mman.h>
  43. #include <sys/time.h>
  44. #include <signal.h>
  45. typedef struct {
  46. int video_fd;
  47. int tuner_fd;
  48. int width, height;
  49. int frame_rate;
  50. int frame_rate_base;
  51. u_int64_t per_frame;
  52. } VideoData;
  53. #define PAL 1
  54. #define PALBDGHI 1
  55. #define NTSC 2
  56. #define NTSCM 2
  57. #define SECAM 3
  58. #define PALN 4
  59. #define PALM 5
  60. #define NTSCJ 6
  61. /* PAL is 768 x 576. NTSC is 640 x 480 */
  62. #define PAL_HEIGHT 576
  63. #define SECAM_HEIGHT 576
  64. #define NTSC_HEIGHT 480
  65. #ifndef VIDEO_FORMAT
  66. #define VIDEO_FORMAT NTSC
  67. #endif
  68. static int bktr_dev[] = { METEOR_DEV0, METEOR_DEV1, METEOR_DEV2,
  69. METEOR_DEV3, METEOR_DEV_SVIDEO };
  70. uint8_t *video_buf;
  71. size_t video_buf_size;
  72. u_int64_t last_frame_time;
  73. volatile sig_atomic_t nsignals;
  74. static void catchsignal(int signal)
  75. {
  76. nsignals++;
  77. return;
  78. }
  79. static int bktr_init(const char *video_device, int width, int height,
  80. int format, int *video_fd, int *tuner_fd, int idev, double frequency)
  81. {
  82. struct meteor_geomet geo;
  83. int h_max;
  84. long ioctl_frequency;
  85. char *arg;
  86. int c;
  87. struct sigaction act, old;
  88. if (idev < 0 || idev > 4)
  89. {
  90. arg = getenv ("BKTR_DEV");
  91. if (arg)
  92. idev = atoi (arg);
  93. if (idev < 0 || idev > 4)
  94. idev = 1;
  95. }
  96. if (format < 1 || format > 6)
  97. {
  98. arg = getenv ("BKTR_FORMAT");
  99. if (arg)
  100. format = atoi (arg);
  101. if (format < 1 || format > 6)
  102. format = VIDEO_FORMAT;
  103. }
  104. if (frequency <= 0)
  105. {
  106. arg = getenv ("BKTR_FREQUENCY");
  107. if (arg)
  108. frequency = atof (arg);
  109. if (frequency <= 0)
  110. frequency = 0.0;
  111. }
  112. memset(&act, 0, sizeof(act));
  113. sigemptyset(&act.sa_mask);
  114. act.sa_handler = catchsignal;
  115. sigaction(SIGUSR1, &act, &old);
  116. *tuner_fd = open("/dev/tuner0", O_RDONLY);
  117. if (*tuner_fd < 0)
  118. perror("Warning: Tuner not opened, continuing");
  119. *video_fd = open(video_device, O_RDONLY);
  120. if (*video_fd < 0) {
  121. perror(video_device);
  122. return -1;
  123. }
  124. geo.rows = height;
  125. geo.columns = width;
  126. geo.frames = 1;
  127. geo.oformat = METEOR_GEO_YUV_422 | METEOR_GEO_YUV_12;
  128. switch (format) {
  129. case PAL: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALBDGHI; break;
  130. case PALN: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALN; break;
  131. case PALM: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALM; break;
  132. case SECAM: h_max = SECAM_HEIGHT; c = BT848_IFORM_F_SECAM; break;
  133. case NTSC: h_max = NTSC_HEIGHT; c = BT848_IFORM_F_NTSCM; break;
  134. case NTSCJ: h_max = NTSC_HEIGHT; c = BT848_IFORM_F_NTSCJ; break;
  135. default: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALBDGHI; break;
  136. }
  137. if (height <= h_max / 2)
  138. geo.oformat |= METEOR_GEO_EVEN_ONLY;
  139. if (ioctl(*video_fd, METEORSETGEO, &geo) < 0) {
  140. perror("METEORSETGEO");
  141. return -1;
  142. }
  143. if (ioctl(*video_fd, BT848SFMT, &c) < 0) {
  144. perror("BT848SFMT");
  145. return -1;
  146. }
  147. c = bktr_dev[idev];
  148. if (ioctl(*video_fd, METEORSINPUT, &c) < 0) {
  149. perror("METEORSINPUT");
  150. return -1;
  151. }
  152. video_buf_size = width * height * 12 / 8;
  153. video_buf = (uint8_t *)mmap((caddr_t)0, video_buf_size,
  154. PROT_READ, MAP_SHARED, *video_fd, (off_t)0);
  155. if (video_buf == MAP_FAILED) {
  156. perror("mmap");
  157. return -1;
  158. }
  159. if (frequency != 0.0) {
  160. ioctl_frequency = (unsigned long)(frequency*16);
  161. if (ioctl(*tuner_fd, TVTUNER_SETFREQ, &ioctl_frequency) < 0)
  162. perror("TVTUNER_SETFREQ");
  163. }
  164. c = AUDIO_UNMUTE;
  165. if (ioctl(*tuner_fd, BT848_SAUDIO, &c) < 0)
  166. perror("TVTUNER_SAUDIO");
  167. c = METEOR_CAP_CONTINOUS;
  168. ioctl(*video_fd, METEORCAPTUR, &c);
  169. c = SIGUSR1;
  170. ioctl(*video_fd, METEORSSIGNAL, &c);
  171. return 0;
  172. }
  173. static void bktr_getframe(u_int64_t per_frame)
  174. {
  175. u_int64_t curtime;
  176. curtime = av_gettime();
  177. if (!last_frame_time
  178. || ((last_frame_time + per_frame) > curtime)) {
  179. if (!usleep(last_frame_time + per_frame + per_frame / 8 - curtime)) {
  180. if (!nsignals)
  181. av_log(NULL, AV_LOG_INFO,
  182. "SLEPT NO signals - %d microseconds late\n",
  183. (int)(av_gettime() - last_frame_time - per_frame));
  184. }
  185. }
  186. nsignals = 0;
  187. last_frame_time = curtime;
  188. }
  189. /* note: we support only one picture read at a time */
  190. static int grab_read_packet(AVFormatContext *s1, AVPacket *pkt)
  191. {
  192. VideoData *s = s1->priv_data;
  193. if (av_new_packet(pkt, video_buf_size) < 0)
  194. return -EIO;
  195. bktr_getframe(s->per_frame);
  196. pkt->pts = av_gettime() & ((1LL << 48) - 1);
  197. memcpy(pkt->data, video_buf, video_buf_size);
  198. return video_buf_size;
  199. }
  200. static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap)
  201. {
  202. VideoData *s = s1->priv_data;
  203. AVStream *st;
  204. int width, height;
  205. int frame_rate;
  206. int frame_rate_base;
  207. int format = -1;
  208. const char *video_device;
  209. if (!ap || ap->width <= 0 || ap->height <= 0 || ap->time_base.den <= 0)
  210. return -1;
  211. width = ap->width;
  212. height = ap->height;
  213. frame_rate = ap->time_base.den;
  214. frame_rate_base = ap->time_base.num;
  215. video_device = ap->device;
  216. if (!video_device)
  217. video_device = "/dev/bktr0";
  218. st = av_new_stream(s1, 0);
  219. if (!st)
  220. return -ENOMEM;
  221. av_set_pts_info(st, 48, 1, 1000000); /* 48 bits pts in use */
  222. s->width = width;
  223. s->height = height;
  224. s->frame_rate = frame_rate;
  225. s->frame_rate_base = frame_rate_base;
  226. s->per_frame = ((u_int64_t)1000000 * s->frame_rate_base) / s->frame_rate;
  227. st->codec.codec_type = CODEC_TYPE_VIDEO;
  228. st->codec.pix_fmt = PIX_FMT_YUV420P;
  229. st->codec.codec_id = CODEC_ID_RAWVIDEO;
  230. st->codec.width = width;
  231. st->codec.height = height;
  232. st->codec.time_base.den = frame_rate;
  233. st->codec.time_base.num = frame_rate_base;
  234. if (ap->standard) {
  235. if (!strcasecmp(ap->standard, "pal"))
  236. format = PAL;
  237. else if (!strcasecmp(ap->standard, "secam"))
  238. format = SECAM;
  239. else if (!strcasecmp(ap->standard, "ntsc"))
  240. format = NTSC;
  241. }
  242. if (bktr_init(video_device, width, height, format,
  243. &(s->video_fd), &(s->tuner_fd), -1, 0.0) < 0)
  244. return -EIO;
  245. nsignals = 0;
  246. last_frame_time = 0;
  247. return 0;
  248. }
  249. static int grab_read_close(AVFormatContext *s1)
  250. {
  251. VideoData *s = s1->priv_data;
  252. int c;
  253. c = METEOR_CAP_STOP_CONT;
  254. ioctl(s->video_fd, METEORCAPTUR, &c);
  255. close(s->video_fd);
  256. c = AUDIO_MUTE;
  257. ioctl(s->tuner_fd, BT848_SAUDIO, &c);
  258. close(s->tuner_fd);
  259. munmap((caddr_t)video_buf, video_buf_size);
  260. return 0;
  261. }
  262. AVInputFormat video_grab_device_format = {
  263. "bktr",
  264. "video grab",
  265. sizeof(VideoData),
  266. NULL,
  267. grab_read_header,
  268. grab_read_packet,
  269. grab_read_close,
  270. .flags = AVFMT_NOFILE,
  271. };
  272. int video_grab_init(void)
  273. {
  274. av_register_input_format(&video_grab_device_format);
  275. return 0;
  276. }