bktr.c 10 KB

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