libavdevice/bktr.c
6beefa40
 /*
  * *BSD video grab interface
  * Copyright (c) 2002 Steve O'Hara-Smith
  * based on
  *           Linux video grab interface
406792e7
  *           Copyright (c) 2000,2001 Gerard Lantau
6beefa40
  * and
  *           simple_grab.c Copyright (c) 1999 Roger Hardiman
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
6beefa40
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
6beefa40
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
6beefa40
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6beefa40
  */
245976da
 
c3f9ebf7
 #include "libavformat/internal.h"
e199eb44
 #include "libavutil/log.h"
 #include "libavutil/opt.h"
33e03696
 #include "libavutil/parseutils.h"
b250f9c6
 #if HAVE_DEV_BKTR_IOCTL_METEOR_H && HAVE_DEV_BKTR_IOCTL_BT848_H
38f0d3ce
 # include <dev/bktr/ioctl_meteor.h>
 # include <dev/bktr/ioctl_bt848.h>
b250f9c6
 #elif HAVE_MACHINE_IOCTL_METEOR_H && HAVE_MACHINE_IOCTL_BT848_H
f8aa696f
 # include <machine/ioctl_meteor.h>
 # include <machine/ioctl_bt848.h>
71e42180
 #elif HAVE_DEV_VIDEO_METEOR_IOCTL_METEOR_H && HAVE_DEV_VIDEO_BKTR_IOCTL_BT848_H
6beefa40
 # include <dev/video/meteor/ioctl_meteor.h>
 # include <dev/video/bktr/ioctl_bt848.h>
f8aa696f
 #elif HAVE_DEV_IC_BT8XX_H
6beefa40
 # include <dev/ic/bt8xx.h>
 #endif
 #include <unistd.h>
 #include <fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/mman.h>
 #include <sys/time.h>
 #include <signal.h>
4f4e4008
 #include <stdint.h>
6b899e16
 #include "avdevice.h"
6beefa40
 
 typedef struct {
e199eb44
     AVClass *class;
6beefa40
     int video_fd;
     int tuner_fd;
     int width, height;
4f4e4008
     uint64_t per_frame;
e199eb44
     int standard;
3e3db4d9
     char *framerate;  /**< Set by a private option. */
6beefa40
 } VideoData;
 
 
 #define PAL 1
 #define PALBDGHI 1
 #define NTSC 2
 #define NTSCM 2
 #define SECAM 3
 #define PALN 4
 #define PALM 5
 #define NTSCJ 6
 
 /* PAL is 768 x 576. NTSC is 640 x 480 */
 #define PAL_HEIGHT 576
 #define SECAM_HEIGHT 576
 #define NTSC_HEIGHT 480
 
 #ifndef VIDEO_FORMAT
 #define VIDEO_FORMAT NTSC
 #endif
 
 static int bktr_dev[] = { METEOR_DEV0, METEOR_DEV1, METEOR_DEV2,
     METEOR_DEV3, METEOR_DEV_SVIDEO };
 
 uint8_t *video_buf;
 size_t video_buf_size;
4f4e4008
 uint64_t last_frame_time;
6beefa40
 volatile sig_atomic_t nsignals;
 
 
 static void catchsignal(int signal)
 {
     nsignals++;
     return;
 }
 
4f4e4008
 static av_cold int bktr_init(const char *video_device, int width, int height,
6beefa40
     int format, int *video_fd, int *tuner_fd, int idev, double frequency)
 {
     struct meteor_geomet geo;
     int h_max;
     long ioctl_frequency;
     char *arg;
     int c;
a92be9b8
     struct sigaction act = { 0 }, old;
6beefa40
 
     if (idev < 0 || idev > 4)
     {
         arg = getenv ("BKTR_DEV");
         if (arg)
             idev = atoi (arg);
         if (idev < 0 || idev > 4)
             idev = 1;
     }
 
     if (format < 1 || format > 6)
     {
         arg = getenv ("BKTR_FORMAT");
         if (arg)
             format = atoi (arg);
         if (format < 1 || format > 6)
             format = VIDEO_FORMAT;
     }
 
     if (frequency <= 0)
     {
         arg = getenv ("BKTR_FREQUENCY");
         if (arg)
             frequency = atof (arg);
         if (frequency <= 0)
             frequency = 0.0;
     }
 
     sigemptyset(&act.sa_mask);
     act.sa_handler = catchsignal;
     sigaction(SIGUSR1, &act, &old);
 
     *tuner_fd = open("/dev/tuner0", O_RDONLY);
     if (*tuner_fd < 0)
95206290
         av_log(NULL, AV_LOG_ERROR, "Warning. Tuner not opened, continuing: %s\n", strerror(errno));
6beefa40
 
     *video_fd = open(video_device, O_RDONLY);
     if (*video_fd < 0) {
95206290
         av_log(NULL, AV_LOG_ERROR, "%s: %s\n", video_device, strerror(errno));
6beefa40
         return -1;
     }
 
     geo.rows = height;
     geo.columns = width;
     geo.frames = 1;
     geo.oformat = METEOR_GEO_YUV_422 | METEOR_GEO_YUV_12;
 
     switch (format) {
     case PAL:   h_max = PAL_HEIGHT;   c = BT848_IFORM_F_PALBDGHI; break;
     case PALN:  h_max = PAL_HEIGHT;   c = BT848_IFORM_F_PALN;     break;
     case PALM:  h_max = PAL_HEIGHT;   c = BT848_IFORM_F_PALM;     break;
     case SECAM: h_max = SECAM_HEIGHT; c = BT848_IFORM_F_SECAM;    break;
     case NTSC:  h_max = NTSC_HEIGHT;  c = BT848_IFORM_F_NTSCM;    break;
     case NTSCJ: h_max = NTSC_HEIGHT;  c = BT848_IFORM_F_NTSCJ;    break;
     default:    h_max = PAL_HEIGHT;   c = BT848_IFORM_F_PALBDGHI; break;
     }
 
     if (height <= h_max / 2)
         geo.oformat |= METEOR_GEO_EVEN_ONLY;
 
     if (ioctl(*video_fd, METEORSETGEO, &geo) < 0) {
95206290
         av_log(NULL, AV_LOG_ERROR, "METEORSETGEO: %s\n", strerror(errno));
6beefa40
         return -1;
     }
 
     if (ioctl(*video_fd, BT848SFMT, &c) < 0) {
95206290
         av_log(NULL, AV_LOG_ERROR, "BT848SFMT: %s\n", strerror(errno));
6beefa40
         return -1;
     }
 
     c = bktr_dev[idev];
     if (ioctl(*video_fd, METEORSINPUT, &c) < 0) {
95206290
         av_log(NULL, AV_LOG_ERROR, "METEORSINPUT: %s\n", strerror(errno));
6beefa40
         return -1;
     }
 
     video_buf_size = width * height * 12 / 8;
 
115329f1
     video_buf = (uint8_t *)mmap((caddr_t)0, video_buf_size,
6beefa40
         PROT_READ, MAP_SHARED, *video_fd, (off_t)0);
     if (video_buf == MAP_FAILED) {
95206290
         av_log(NULL, AV_LOG_ERROR, "mmap: %s\n", strerror(errno));
6beefa40
         return -1;
     }
 
     if (frequency != 0.0) {
115329f1
         ioctl_frequency  = (unsigned long)(frequency*16);
6beefa40
         if (ioctl(*tuner_fd, TVTUNER_SETFREQ, &ioctl_frequency) < 0)
95206290
             av_log(NULL, AV_LOG_ERROR, "TVTUNER_SETFREQ: %s\n", strerror(errno));
6beefa40
     }
 
     c = AUDIO_UNMUTE;
     if (ioctl(*tuner_fd, BT848_SAUDIO, &c) < 0)
95206290
         av_log(NULL, AV_LOG_ERROR, "TVTUNER_SAUDIO: %s\n", strerror(errno));
6beefa40
 
     c = METEOR_CAP_CONTINOUS;
     ioctl(*video_fd, METEORCAPTUR, &c);
 
     c = SIGUSR1;
     ioctl(*video_fd, METEORSSIGNAL, &c);
 
     return 0;
 }
 
4f4e4008
 static void bktr_getframe(uint64_t per_frame)
6beefa40
 {
4f4e4008
     uint64_t curtime;
6beefa40
 
     curtime = av_gettime();
     if (!last_frame_time
         || ((last_frame_time + per_frame) > curtime)) {
         if (!usleep(last_frame_time + per_frame + per_frame / 8 - curtime)) {
             if (!nsignals)
                 av_log(NULL, AV_LOG_INFO,
                        "SLEPT NO signals - %d microseconds late\n",
                        (int)(av_gettime() - last_frame_time - per_frame));
         }
     }
     nsignals = 0;
     last_frame_time = curtime;
 }
 
 
 /* note: we support only one picture read at a time */
 static int grab_read_packet(AVFormatContext *s1, AVPacket *pkt)
 {
     VideoData *s = s1->priv_data;
 
     if (av_new_packet(pkt, video_buf_size) < 0)
8fa36ae0
         return AVERROR(EIO);
6beefa40
 
     bktr_getframe(s->per_frame);
 
0a7b514f
     pkt->pts = av_gettime();
6beefa40
     memcpy(pkt->data, video_buf, video_buf_size);
 
     return video_buf_size;
 }
 
6e9651d1
 static int grab_read_header(AVFormatContext *s1)
6beefa40
 {
     VideoData *s = s1->priv_data;
     AVStream *st;
da51a7c6
     AVRational framerate;
35774162
     int ret = 0;
6beefa40
 
bd7c1d35
     if (!s->framerate)
         switch (s->standard) {
         case PAL:   s->framerate = av_strdup("pal");  break;
         case NTSC:  s->framerate = av_strdup("ntsc"); break;
         case SECAM: s->framerate = av_strdup("25");   break;
         default:
             av_log(s1, AV_LOG_ERROR, "Unknown standard.\n");
             ret = AVERROR(EINVAL);
             goto out;
         }
da51a7c6
     if ((ret = av_parse_video_rate(&framerate, s->framerate)) < 0) {
41b68dce
         av_log(s1, AV_LOG_ERROR, "Could not parse framerate '%s'.\n", s->framerate);
3e3db4d9
         goto out;
     }
6beefa40
 
3b3bbdd3
     st = avformat_new_stream(s1, NULL);
35774162
     if (!st) {
         ret = AVERROR(ENOMEM);
         goto out;
     }
c3f9ebf7
     avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in use */
6beefa40
 
da51a7c6
     s->per_frame = ((uint64_t)1000000 * framerate.den) / framerate.num;
6beefa40
 
72415b2a
     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
9f747cc3
     st->codec->pix_fmt = PIX_FMT_YUV420P;
36ef5369
     st->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
9bcd70aa
     st->codec->width = s->width;
     st->codec->height = s->height;
da51a7c6
     st->codec->time_base.den = framerate.num;
     st->codec->time_base.num = framerate.den;
6beefa40
 
 
9bcd70aa
     if (bktr_init(s1->filename, s->width, s->height, s->standard,
3dc99a18
                   &s->video_fd, &s->tuner_fd, -1, 0.0) < 0) {
35774162
         ret = AVERROR(EIO);
         goto out;
     }
6beefa40
 
     nsignals = 0;
     last_frame_time = 0;
 
35774162
 out:
     return ret;
6beefa40
 }
 
 static int grab_read_close(AVFormatContext *s1)
 {
     VideoData *s = s1->priv_data;
     int c;
 
     c = METEOR_CAP_STOP_CONT;
     ioctl(s->video_fd, METEORCAPTUR, &c);
     close(s->video_fd);
 
     c = AUDIO_MUTE;
     ioctl(s->tuner_fd, BT848_SAUDIO, &c);
     close(s->tuner_fd);
 
     munmap((caddr_t)video_buf, video_buf_size);
 
     return 0;
 }
 
33e03696
 #define OFFSET(x) offsetof(VideoData, x)
 #define DEC AV_OPT_FLAG_DECODING_PARAM
e199eb44
 static const AVOption options[] = {
e6153f17
     { "standard", "", offsetof(VideoData, standard), AV_OPT_TYPE_INT, {.i64 = VIDEO_FORMAT}, PAL, NTSCJ, AV_OPT_FLAG_DECODING_PARAM, "standard" },
124134e4
     { "PAL",      "", 0, AV_OPT_TYPE_CONST, {.i64 = PAL},   0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
     { "NTSC",     "", 0, AV_OPT_TYPE_CONST, {.i64 = NTSC},  0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
     { "SECAM",    "", 0, AV_OPT_TYPE_CONST, {.i64 = SECAM}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
     { "PALN",     "", 0, AV_OPT_TYPE_CONST, {.i64 = PALN},  0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
     { "PALM",     "", 0, AV_OPT_TYPE_CONST, {.i64 = PALM},  0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
     { "NTSCJ",    "", 0, AV_OPT_TYPE_CONST, {.i64 = NTSCJ}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
9bcd70aa
     { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = "vga"}, 0, 0, DEC },
145f741e
     { "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
e199eb44
     { NULL },
 };
 
 static const AVClass bktr_class = {
     .class_name = "BKTR grab interface",
     .item_name  = av_default_item_name,
     .option     = options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
66355be3
 AVInputFormat ff_bktr_demuxer = {
30b4ee79
     .name           = "bktr",
     .long_name      = NULL_IF_CONFIG_SMALL("video grab"),
     .priv_data_size = sizeof(VideoData),
     .read_header    = grab_read_header,
     .read_packet    = grab_read_packet,
     .read_close     = grab_read_close,
     .flags          = AVFMT_NOFILE,
     .priv_class     = &bktr_class,
6beefa40
 };