fbdev.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
3  * Copyright (c) 2009 Giliard B. de Freitas <giliarde@gmail.com>
4  * Copyright (C) 2002 Gunnar Monell <gmo@linux.nu>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 /**
24  * @file
25  * Linux framebuffer input device,
26  * inspired by code from fbgrab.c by Gunnar Monell.
27  * @see http://linux-fbdev.sourceforge.net/
28  */
29 
30 /* #define DEBUG */
31 
32 #include <unistd.h>
33 #include <fcntl.h>
34 #include <sys/ioctl.h>
35 #include <sys/mman.h>
36 #include <time.h>
37 #include <linux/fb.h>
38 
39 #include "libavutil/log.h"
40 #include "libavutil/mem.h"
41 #include "libavutil/opt.h"
42 #include "libavutil/time.h"
43 #include "libavutil/parseutils.h"
44 #include "libavutil/pixdesc.h"
45 #include "avdevice.h"
46 #include "libavformat/internal.h"
47 
52 };
53 
54 static const struct rgb_pixfmt_map_entry rgb_pixfmt_map[] = {
55  // bpp, red_offset, green_offset, blue_offset, alpha_offset, pixfmt
56  { 32, 0, 8, 16, 24, AV_PIX_FMT_RGBA },
57  { 32, 16, 8, 0, 24, AV_PIX_FMT_BGRA },
58  { 32, 8, 16, 24, 0, AV_PIX_FMT_ARGB },
59  { 32, 3, 2, 8, 0, AV_PIX_FMT_ABGR },
60  { 24, 0, 8, 16, 0, AV_PIX_FMT_RGB24 },
61  { 24, 16, 8, 0, 0, AV_PIX_FMT_BGR24 },
62 };
63 
64 static enum AVPixelFormat get_pixfmt_from_fb_varinfo(struct fb_var_screeninfo *varinfo)
65 {
66  int i;
67 
68  for (i = 0; i < FF_ARRAY_ELEMS(rgb_pixfmt_map); i++) {
69  const struct rgb_pixfmt_map_entry *entry = &rgb_pixfmt_map[i];
70  if (entry->bits_per_pixel == varinfo->bits_per_pixel &&
71  entry->red_offset == varinfo->red.offset &&
72  entry->green_offset == varinfo->green.offset &&
73  entry->blue_offset == varinfo->blue.offset)
74  return entry->pixfmt;
75  }
76 
77  return AV_PIX_FMT_NONE;
78 }
79 
80 typedef struct {
81  AVClass *class; ///< class for private options
82  int frame_size; ///< size in bytes of a grabbed frame
83  AVRational framerate_q; ///< framerate
84  char *framerate; ///< framerate string set by a private option
85  int64_t time_frame; ///< time for the next frame to output (in 1/1000000 units)
86 
87  int fd; ///< framebuffer device file descriptor
88  int width, height; ///< assumed frame resolution
89  int frame_linesize; ///< linesize of the output frame, it is assumed to be constant
91 
92  struct fb_var_screeninfo varinfo; ///< variable info;
93  struct fb_fix_screeninfo fixinfo; ///< fixed info;
94 
95  uint8_t *data; ///< framebuffer data
96 } FBDevContext;
97 
99 {
100  FBDevContext *fbdev = avctx->priv_data;
101  AVStream *st = NULL;
102  enum AVPixelFormat pix_fmt;
103  int ret, flags = O_RDONLY;
104 
105  ret = av_parse_video_rate(&fbdev->framerate_q, fbdev->framerate);
106  if (ret < 0) {
107  av_log(avctx, AV_LOG_ERROR, "Could not parse framerate '%s'.\n", fbdev->framerate);
108  return ret;
109  }
110 
111  if (!(st = avformat_new_stream(avctx, NULL)))
112  return AVERROR(ENOMEM);
113  avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in microseconds */
114 
115  /* NONBLOCK is ignored by the fbdev driver, only set for consistency */
116  if (avctx->flags & AVFMT_FLAG_NONBLOCK)
117  flags |= O_NONBLOCK;
118 
119  if ((fbdev->fd = open(avctx->filename, flags)) == -1) {
120  ret = AVERROR(errno);
121  av_log(avctx, AV_LOG_ERROR,
122  "Could not open framebuffer device '%s': %s\n",
123  avctx->filename, strerror(ret));
124  return ret;
125  }
126 
127  if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0) {
128  ret = AVERROR(errno);
129  av_log(avctx, AV_LOG_ERROR,
130  "FBIOGET_VSCREENINFO: %s\n", strerror(errno));
131  goto fail;
132  }
133 
134  if (ioctl(fbdev->fd, FBIOGET_FSCREENINFO, &fbdev->fixinfo) < 0) {
135  ret = AVERROR(errno);
136  av_log(avctx, AV_LOG_ERROR,
137  "FBIOGET_FSCREENINFO: %s\n", strerror(errno));
138  goto fail;
139  }
140 
141  pix_fmt = get_pixfmt_from_fb_varinfo(&fbdev->varinfo);
142  if (pix_fmt == AV_PIX_FMT_NONE) {
143  ret = AVERROR(EINVAL);
144  av_log(avctx, AV_LOG_ERROR,
145  "Framebuffer pixel format not supported.\n");
146  goto fail;
147  }
148 
149  fbdev->width = fbdev->varinfo.xres;
150  fbdev->height = fbdev->varinfo.yres;
151  fbdev->bytes_per_pixel = (fbdev->varinfo.bits_per_pixel + 7) >> 3;
152  fbdev->frame_linesize = fbdev->width * fbdev->bytes_per_pixel;
153  fbdev->frame_size = fbdev->frame_linesize * fbdev->height;
154  fbdev->time_frame = AV_NOPTS_VALUE;
155  fbdev->data = mmap(NULL, fbdev->fixinfo.smem_len, PROT_READ, MAP_SHARED, fbdev->fd, 0);
156  if (fbdev->data == MAP_FAILED) {
157  ret = AVERROR(errno);
158  av_log(avctx, AV_LOG_ERROR, "Error in mmap(): %s\n", strerror(errno));
159  goto fail;
160  }
161 
164  st->codec->width = fbdev->width;
165  st->codec->height = fbdev->height;
166  st->codec->pix_fmt = pix_fmt;
167  st->codec->time_base = av_inv_q(fbdev->framerate_q);
168  st->codec->bit_rate =
169  fbdev->width * fbdev->height * fbdev->bytes_per_pixel * av_q2d(fbdev->framerate_q) * 8;
170 
171  av_log(avctx, AV_LOG_INFO,
172  "w:%d h:%d bpp:%d pixfmt:%s fps:%d/%d bit_rate:%d\n",
173  fbdev->width, fbdev->height, fbdev->varinfo.bits_per_pixel,
174  av_get_pix_fmt_name(pix_fmt),
175  fbdev->framerate_q.num, fbdev->framerate_q.den,
176  st->codec->bit_rate);
177  return 0;
178 
179 fail:
180  close(fbdev->fd);
181  return ret;
182 }
183 
185 {
186  FBDevContext *fbdev = avctx->priv_data;
187  int64_t curtime, delay;
188  struct timespec ts;
189  int i, ret;
190  uint8_t *pin, *pout;
191 
192  if (fbdev->time_frame == AV_NOPTS_VALUE)
193  fbdev->time_frame = av_gettime();
194 
195  /* wait based on the frame rate */
196  while (1) {
197  curtime = av_gettime();
198  delay = fbdev->time_frame - curtime;
199  av_dlog(avctx,
200  "time_frame:%"PRId64" curtime:%"PRId64" delay:%"PRId64"\n",
201  fbdev->time_frame, curtime, delay);
202  if (delay <= 0) {
203  fbdev->time_frame += INT64_C(1000000) / av_q2d(fbdev->framerate_q);
204  break;
205  }
206  if (avctx->flags & AVFMT_FLAG_NONBLOCK)
207  return AVERROR(EAGAIN);
208  ts.tv_sec = delay / 1000000;
209  ts.tv_nsec = (delay % 1000000) * 1000;
210  while (nanosleep(&ts, &ts) < 0 && errno == EINTR);
211  }
212 
213  if ((ret = av_new_packet(pkt, fbdev->frame_size)) < 0)
214  return ret;
215 
216  /* refresh fbdev->varinfo, visible data position may change at each call */
217  if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0)
218  av_log(avctx, AV_LOG_WARNING,
219  "Error refreshing variable info: %s\n", strerror(errno));
220 
221  pkt->pts = curtime;
222 
223  /* compute visible data offset */
224  pin = fbdev->data + fbdev->bytes_per_pixel * fbdev->varinfo.xoffset +
225  fbdev->varinfo.yoffset * fbdev->fixinfo.line_length;
226  pout = pkt->data;
227 
228  for (i = 0; i < fbdev->height; i++) {
229  memcpy(pout, pin, fbdev->frame_linesize);
230  pin += fbdev->fixinfo.line_length;
231  pout += fbdev->frame_linesize;
232  }
233 
234  return fbdev->frame_size;
235 }
236 
238 {
239  FBDevContext *fbdev = avctx->priv_data;
240 
241  munmap(fbdev->data, fbdev->frame_size);
242  close(fbdev->fd);
243 
244  return 0;
245 }
246 
247 #define OFFSET(x) offsetof(FBDevContext, x)
248 #define DEC AV_OPT_FLAG_DECODING_PARAM
249 static const AVOption options[] = {
250  { "framerate","", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC },
251  { NULL },
252 };
253 
254 static const AVClass fbdev_class = {
255  .class_name = "fbdev indev",
256  .item_name = av_default_item_name,
257  .option = options,
258  .version = LIBAVUTIL_VERSION_INT,
259 };
260 
262  .name = "fbdev",
263  .long_name = NULL_IF_CONFIG_SMALL("Linux framebuffer"),
264  .priv_data_size = sizeof(FBDevContext),
268  .flags = AVFMT_NOFILE,
269  .priv_class = &fbdev_class,
270 };
#define DEC
Definition: fbdev.c:248
int height
assumed frame resolution
Definition: fbdev.c:88
int av_parse_video_rate(AVRational *rate, const char *arg)
Parse str and store the detected values in *rate.
Definition: parseutils.c:162
AVOption.
Definition: opt.h:251
av_default_item_name
int blue_offset
Definition: fbdev.c:50
char * framerate
framerate string set by a private option
Definition: fbdev.c:84
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:70
memory handling functions
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
int alpha_offset
Definition: fbdev.c:50
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:154
int num
numerator
Definition: rational.h:44
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
AVInputFormat ff_fbdev_demuxer
Definition: fbdev.c:261
#define FF_ARRAY_ELEMS(a)
av_dlog(ac->avr,"%d samples - audio_convert: %s to %s (%s)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic?ac->func_descr_generic:ac->func_descr)
int frame_linesize
linesize of the output frame, it is assumed to be constant
Definition: fbdev.c:89
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
int frame_size
size in bytes of a grabbed frame
Definition: fbdev.c:82
Format I/O context.
Definition: avformat.h:944
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:55
#define AVFMT_FLAG_NONBLOCK
Do not block when reading packets from input.
Definition: avformat.h:1024
uint8_t
#define av_cold
Definition: attributes.h:78
AVOptions.
struct fb_var_screeninfo varinfo
variable info;
Definition: fbdev.c:92
static AVPacket pkt
Definition: demuxing.c:56
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition: pixfmt.h:98
int64_t time_frame
time for the next frame to output (in 1/1000000 units)
Definition: fbdev.c:85
static double av_q2d(AVRational a)
Convert rational to double.
Definition: rational.h:69
uint8_t * data
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
enum AVPixelFormat pix_fmt
Definition: v4l.c:63
Definition: fbdev.c:48
Main libavdevice API header.
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: avpacket.c:73
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:99
enum AVPixelFormat pixfmt
Definition: fbdev.c:51
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition: pixfmt.h:96
int green_offset
Definition: fbdev.c:50
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:97
struct fb_fix_screeninfo fixinfo
fixed info;
Definition: fbdev.c:93
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:662
int bit_rate
the average bitrate
char filename[1024]
input or output filename
Definition: avformat.h:994
ret
Definition: avfilter.c:821
int width
picture width / height.
static const struct rgb_pixfmt_map_entry rgb_pixfmt_map[]
Definition: fbdev.c:54
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:71
AVRational framerate_q
framerate
Definition: fbdev.c:83
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:517
int64_t av_gettime(void)
Get the current time in microseconds.
Definition: time.c:39
Stream structure.
Definition: avformat.h:643
NULL
Definition: eval.c:55
enum AVMediaType codec_type
static av_cold int fbdev_read_header(AVFormatContext *avctx)
Definition: fbdev.c:98
enum AVCodecID codec_id
static int fbdev_read_packet(AVFormatContext *avctx, AVPacket *pkt)
Definition: fbdev.c:184
int width
Definition: fbdev.c:88
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
int bytes_per_pixel
Definition: fbdev.c:90
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
static av_cold int fbdev_read_close(AVFormatContext *avctx)
Definition: fbdev.c:237
BYTE int const BYTE int int int height
Definition: avisynth_c.h:713
Describe the class of an AVClass context structure.
Definition: log.h:50
synthesis window for stochastic i
rational number numerator/denominator
Definition: rational.h:43
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
misc parsing utilities
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:122
static int flags
Definition: cpu.c:23
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:345
uint8_t * data
framebuffer data
Definition: fbdev.c:95
static enum AVPixelFormat get_pixfmt_from_fb_varinfo(struct fb_var_screeninfo *varinfo)
Definition: fbdev.c:64
int den
denominator
Definition: rational.h:45
int red_offset
Definition: fbdev.c:50
half analysis window size pin
void * priv_data
Format private data.
Definition: avformat.h:964
static const AVClass fbdev_class
Definition: fbdev.c:254
#define AV_LOG_INFO
Definition: log.h:156
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:461
static const AVOption options[]
Definition: fbdev.c:249
#define OFFSET(x)
Definition: fbdev.c:247
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:1700
AVPixelFormat
Pixel format.
Definition: pixfmt.h:66
This structure stores compressed data.
int fd
framebuffer device file descriptor
Definition: fbdev.c:87
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:190
int bits_per_pixel
Definition: fbdev.c:49