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.

321 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 file is part of FFmpeg.
  11. *
  12. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  24. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  25. */
  26. #include "avformat.h"
  27. #if defined (HAVE_DEV_BKTR_IOCTL_METEOR_H) && defined (HAVE_DEV_BKTR_IOCTL_BT848_H)
  28. # include <dev/bktr/ioctl_meteor.h>
  29. # include <dev/bktr/ioctl_bt848.h>
  30. #elif defined (HAVE_MACHINE_IOCTL_METEOR_H) && defined (HAVE_MACHINE_IOCTL_BT848_H)
  31. # include <machine/ioctl_meteor.h>
  32. # include <machine/ioctl_bt848.h>
  33. #elif defined (HAVE_DEV_VIDEO_METEOR_IOCTL_METEOR_H) && defined (HAVE_DEV_VIDEO_METEOR_IOCTL_BT848_H)
  34. # include <dev/video/meteor/ioctl_meteor.h>
  35. # include <dev/video/bktr/ioctl_bt848.h>
  36. #elif HAVE_DEV_IC_BT8XX_H
  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 AVERROR(EIO);
  195. bktr_getframe(s->per_frame);
  196. pkt->pts = av_gettime();
  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. if (ap->width <= 0 || ap->height <= 0 || ap->time_base.den <= 0)
  209. return -1;
  210. width = ap->width;
  211. height = ap->height;
  212. frame_rate = ap->time_base.den;
  213. frame_rate_base = ap->time_base.num;
  214. st = av_new_stream(s1, 0);
  215. if (!st)
  216. return AVERROR(ENOMEM);
  217. av_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in use */
  218. s->width = width;
  219. s->height = height;
  220. s->frame_rate = frame_rate;
  221. s->frame_rate_base = frame_rate_base;
  222. s->per_frame = ((u_int64_t)1000000 * s->frame_rate_base) / s->frame_rate;
  223. st->codec->codec_type = CODEC_TYPE_VIDEO;
  224. st->codec->pix_fmt = PIX_FMT_YUV420P;
  225. st->codec->codec_id = CODEC_ID_RAWVIDEO;
  226. st->codec->width = width;
  227. st->codec->height = height;
  228. st->codec->time_base.den = frame_rate;
  229. st->codec->time_base.num = frame_rate_base;
  230. if (ap->standard) {
  231. if (!strcasecmp(ap->standard, "pal"))
  232. format = PAL;
  233. else if (!strcasecmp(ap->standard, "secam"))
  234. format = SECAM;
  235. else if (!strcasecmp(ap->standard, "ntsc"))
  236. format = NTSC;
  237. }
  238. if (bktr_init(s1->filename, width, height, format,
  239. &(s->video_fd), &(s->tuner_fd), -1, 0.0) < 0)
  240. return AVERROR(EIO);
  241. nsignals = 0;
  242. last_frame_time = 0;
  243. return 0;
  244. }
  245. static int grab_read_close(AVFormatContext *s1)
  246. {
  247. VideoData *s = s1->priv_data;
  248. int c;
  249. c = METEOR_CAP_STOP_CONT;
  250. ioctl(s->video_fd, METEORCAPTUR, &c);
  251. close(s->video_fd);
  252. c = AUDIO_MUTE;
  253. ioctl(s->tuner_fd, BT848_SAUDIO, &c);
  254. close(s->tuner_fd);
  255. munmap((caddr_t)video_buf, video_buf_size);
  256. return 0;
  257. }
  258. AVInputFormat video_grab_bktr_demuxer = {
  259. "bktr",
  260. "video grab",
  261. sizeof(VideoData),
  262. NULL,
  263. grab_read_header,
  264. grab_read_packet,
  265. grab_read_close,
  266. .flags = AVFMT_NOFILE,
  267. };