libavdevice/fbdev_dec.c
1a204f07
 /*
  * Copyright (c) 2011 Stefano Sabatini
  * Copyright (c) 2009 Giliard B. de Freitas <giliarde@gmail.com>
  * Copyright (C) 2002 Gunnar Monell <gmo@linux.nu>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * 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
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
  * Linux framebuffer input device,
  * inspired by code from fbgrab.c by Gunnar Monell.
ad4cd0c2
  * @see http://linux-fbdev.sourceforge.net/
1a204f07
  */
 
 #include <unistd.h>
 #include <fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/mman.h>
 #include <time.h>
 #include <linux/fb.h>
 
71bf6b41
 #include "libavutil/internal.h"
1556186a
 #include "libavutil/log.h"
1a204f07
 #include "libavutil/mem.h"
1556186a
 #include "libavutil/opt.h"
c4ef6a3e
 #include "libavutil/time.h"
1556186a
 #include "libavutil/parseutils.h"
1a204f07
 #include "libavutil/pixdesc.h"
c3f9ebf7
 #include "libavformat/internal.h"
a547c496
 #include "avdevice.h"
 #include "fbdev_common.h"
1a204f07
 
c0de9159
 typedef struct FBDevContext {
1556186a
     AVClass *class;          ///< class for private options
1a204f07
     int frame_size;          ///< size in bytes of a grabbed frame
a5351720
     AVRational framerate_q;  ///< framerate
1a204f07
     int64_t time_frame;      ///< time for the next frame to output (in 1/1000000 units)
 
     int fd;                  ///< framebuffer device file descriptor
e83c2dde
     int width, height;       ///< assumed frame resolution
1a204f07
     int frame_linesize;      ///< linesize of the output frame, it is assumed to be constant
     int bytes_per_pixel;
 
     struct fb_var_screeninfo varinfo; ///< variable info;
     struct fb_fix_screeninfo fixinfo; ///< fixed    info;
 
     uint8_t *data;           ///< framebuffer data
 } FBDevContext;
 
3dde147f
 static av_cold int fbdev_read_header(AVFormatContext *avctx)
1a204f07
 {
     FBDevContext *fbdev = avctx->priv_data;
     AVStream *st = NULL;
716d413c
     enum AVPixelFormat pix_fmt;
1a204f07
     int ret, flags = O_RDONLY;
 
3b3bbdd3
     if (!(st = avformat_new_stream(avctx, NULL)))
1a204f07
         return AVERROR(ENOMEM);
c3f9ebf7
     avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in microseconds */
1a204f07
 
     /* NONBLOCK is ignored by the fbdev driver, only set for consistency */
     if (avctx->flags & AVFMT_FLAG_NONBLOCK)
         flags |= O_NONBLOCK;
 
71bf6b41
     if ((fbdev->fd = avpriv_open(avctx->filename, flags)) == -1) {
1a204f07
         ret = AVERROR(errno);
         av_log(avctx, AV_LOG_ERROR,
                "Could not open framebuffer device '%s': %s\n",
f6b56b1f
                avctx->filename, av_err2str(ret));
1a204f07
         return ret;
     }
 
     if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0) {
         ret = AVERROR(errno);
         av_log(avctx, AV_LOG_ERROR,
f6b56b1f
                "FBIOGET_VSCREENINFO: %s\n", av_err2str(ret));
1a204f07
         goto fail;
     }
 
     if (ioctl(fbdev->fd, FBIOGET_FSCREENINFO, &fbdev->fixinfo) < 0) {
         ret = AVERROR(errno);
         av_log(avctx, AV_LOG_ERROR,
f6b56b1f
                "FBIOGET_FSCREENINFO: %s\n", av_err2str(ret));
1a204f07
         goto fail;
     }
 
a547c496
     pix_fmt = ff_get_pixfmt_from_fb_varinfo(&fbdev->varinfo);
716d413c
     if (pix_fmt == AV_PIX_FMT_NONE) {
1a204f07
         ret = AVERROR(EINVAL);
         av_log(avctx, AV_LOG_ERROR,
                "Framebuffer pixel format not supported.\n");
         goto fail;
     }
 
     fbdev->width           = fbdev->varinfo.xres;
e83c2dde
     fbdev->height          = fbdev->varinfo.yres;
1a204f07
     fbdev->bytes_per_pixel = (fbdev->varinfo.bits_per_pixel + 7) >> 3;
     fbdev->frame_linesize  = fbdev->width * fbdev->bytes_per_pixel;
e83c2dde
     fbdev->frame_size      = fbdev->frame_linesize * fbdev->height;
1a204f07
     fbdev->time_frame      = AV_NOPTS_VALUE;
     fbdev->data = mmap(NULL, fbdev->fixinfo.smem_len, PROT_READ, MAP_SHARED, fbdev->fd, 0);
     if (fbdev->data == MAP_FAILED) {
         ret = AVERROR(errno);
f6b56b1f
         av_log(avctx, AV_LOG_ERROR, "Error in mmap(): %s\n", av_err2str(ret));
1a204f07
         goto fail;
     }
 
     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
36ef5369
     st->codec->codec_id   = AV_CODEC_ID_RAWVIDEO;
1a204f07
     st->codec->width      = fbdev->width;
e83c2dde
     st->codec->height     = fbdev->height;
1a204f07
     st->codec->pix_fmt    = pix_fmt;
16dc5f20
     st->codec->time_base  = av_inv_q(fbdev->framerate_q);
1a204f07
     st->codec->bit_rate   =
e83c2dde
         fbdev->width * fbdev->height * fbdev->bytes_per_pixel * av_q2d(fbdev->framerate_q) * 8;
1a204f07
 
     av_log(avctx, AV_LOG_INFO,
1556186a
            "w:%d h:%d bpp:%d pixfmt:%s fps:%d/%d bit_rate:%d\n",
e83c2dde
            fbdev->width, fbdev->height, fbdev->varinfo.bits_per_pixel,
22c8cbc0
            av_get_pix_fmt_name(pix_fmt),
a5351720
            fbdev->framerate_q.num, fbdev->framerate_q.den,
1a204f07
            st->codec->bit_rate);
     return 0;
 
 fail:
     close(fbdev->fd);
     return ret;
 }
 
 static int fbdev_read_packet(AVFormatContext *avctx, AVPacket *pkt)
 {
     FBDevContext *fbdev = avctx->priv_data;
     int64_t curtime, delay;
     struct timespec ts;
     int i, ret;
     uint8_t *pin, *pout;
 
     if (fbdev->time_frame == AV_NOPTS_VALUE)
         fbdev->time_frame = av_gettime();
 
     /* wait based on the frame rate */
2e92a34c
     while (1) {
         curtime = av_gettime();
         delay = fbdev->time_frame - curtime;
         av_dlog(avctx,
                 "time_frame:%"PRId64" curtime:%"PRId64" delay:%"PRId64"\n",
                 fbdev->time_frame, curtime, delay);
         if (delay <= 0) {
686959e8
             fbdev->time_frame += INT64_C(1000000) / av_q2d(fbdev->framerate_q);
2e92a34c
             break;
         }
1a204f07
         if (avctx->flags & AVFMT_FLAG_NONBLOCK)
             return AVERROR(EAGAIN);
         ts.tv_sec  =  delay / 1000000;
         ts.tv_nsec = (delay % 1000000) * 1000;
47860766
         while (nanosleep(&ts, &ts) < 0 && errno == EINTR);
1a204f07
     }
 
     if ((ret = av_new_packet(pkt, fbdev->frame_size)) < 0)
         return ret;
 
     /* refresh fbdev->varinfo, visible data position may change at each call */
     if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0)
         av_log(avctx, AV_LOG_WARNING,
f6b56b1f
                "Error refreshing variable info: %s\n", av_err2str(ret));
1a204f07
 
     pkt->pts = curtime;
 
     /* compute visible data offset */
     pin = fbdev->data + fbdev->bytes_per_pixel * fbdev->varinfo.xoffset +
                         fbdev->varinfo.yoffset * fbdev->fixinfo.line_length;
     pout = pkt->data;
 
e83c2dde
     for (i = 0; i < fbdev->height; i++) {
1a204f07
         memcpy(pout, pin, fbdev->frame_linesize);
         pin  += fbdev->fixinfo.line_length;
         pout += fbdev->frame_linesize;
     }
 
     return fbdev->frame_size;
 }
 
3dde147f
 static av_cold int fbdev_read_close(AVFormatContext *avctx)
1a204f07
 {
     FBDevContext *fbdev = avctx->priv_data;
 
1421ee26
     munmap(fbdev->data, fbdev->fixinfo.smem_len);
1a204f07
     close(fbdev->fd);
 
     return 0;
 }
 
e2ebaa09
 static int fbdev_get_device_list(AVFormatContext *s, AVDeviceInfoList *device_list)
 {
     return ff_fbdev_get_device_list(device_list);
 }
 
1556186a
 #define OFFSET(x) offsetof(FBDevContext, x)
 #define DEC AV_OPT_FLAG_DECODING_PARAM
 static const AVOption options[] = {
2634af57
     { "framerate","", OFFSET(framerate_q), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, DEC },
1556186a
     { NULL },
 };
 
 static const AVClass fbdev_class = {
     .class_name = "fbdev indev",
     .item_name  = av_default_item_name,
     .option     = options,
     .version    = LIBAVUTIL_VERSION_INT,
f607767d
     .category   = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT,
1556186a
 };
 
1a204f07
 AVInputFormat ff_fbdev_demuxer = {
     .name           = "fbdev",
     .long_name      = NULL_IF_CONFIG_SMALL("Linux framebuffer"),
     .priv_data_size = sizeof(FBDevContext),
     .read_header    = fbdev_read_header,
     .read_packet    = fbdev_read_packet,
     .read_close     = fbdev_read_close,
e2ebaa09
     .get_device_list = fbdev_get_device_list,
1a204f07
     .flags          = AVFMT_NOFILE,
1556186a
     .priv_class     = &fbdev_class,
1a204f07
 };