bktr.c 8.6 KB

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