bktr.c 11 KB

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