Browse code

framebuffer device demuxer

Stefano Sabatini authored on 2011/03/08 02:54:52
Showing 7 changed files
... ...
@@ -77,6 +77,7 @@ version <next>:
77 77
 - Wing Commander IV movies decoder added
78 78
 - movie source added
79 79
 - Bink version 'b' audio and video decoder
80
+- Linux framebuffer input device added
80 81
 
81 82
 
82 83
 version 0.6:
... ...
@@ -1404,6 +1404,7 @@ alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
1404 1404
 alsa_outdev_deps="alsa_asoundlib_h"
1405 1405
 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
1406 1406
 dv1394_indev_deps="dv1394 dv_demuxer"
1407
+fbdev_indev_deps="linux_fb_h"
1407 1408
 jack_indev_deps="jack_jack_h"
1408 1409
 libdc1394_indev_deps="libdc1394"
1409 1410
 oss_indev_deps_any="soundcard_h sys_soundcard_h"
... ...
@@ -2877,6 +2878,7 @@ fi
2877 2877
 
2878 2878
 texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
2879 2879
 
2880
+check_header linux/fb.h
2880 2881
 check_header linux/videodev.h
2881 2882
 check_header linux/videodev2.h
2882 2883
 check_header sys/videoio.h
... ...
@@ -59,6 +59,31 @@ BSD video input device.
59 59
 
60 60
 Linux DV 1394 input device.
61 61
 
62
+@section fbdev
63
+
64
+Linux framebuffer input device.
65
+
66
+The Linux framebuffer is a graphic hardware-independent abstraction
67
+layer to show graphics on a computer monitor, typically on the
68
+console. It is accessed through a file device node, usually
69
+@file{/dev/fb0}.
70
+
71
+For more detailed information read the file
72
+Documentation/fb/framebuffer.txt included in the Linux source tree.
73
+
74
+For example, to record from the framebuffer device @file{/dev/fb0} with
75
+@file{ffmpeg}:
76
+@example
77
+ffmpeg -f fbdev -r 10 -i /dev/fb0 out.avi
78
+@end example
79
+
80
+You can take a single screenshot image with the command:
81
+@example
82
+ffmpeg -f fbdev -vframes 1 -r 1 -i /dev/fb0 screenshot.jpeg
83
+@end example
84
+
85
+See also @url{http://linux-fbdev.sourceforge.net/}, and fbset(1).
86
+
62 87
 @section jack
63 88
 
64 89
 JACK input device.
... ...
@@ -14,6 +14,7 @@ OBJS-$(CONFIG_ALSA_OUTDEV)               += alsa-audio-common.o \
14 14
                                             alsa-audio-enc.o
15 15
 OBJS-$(CONFIG_BKTR_INDEV)                += bktr.o
16 16
 OBJS-$(CONFIG_DV1394_INDEV)              += dv1394.o
17
+OBJS-$(CONFIG_FBDEV_INDEV)               += fbdev.o
17 18
 OBJS-$(CONFIG_JACK_INDEV)                += jack_audio.o
18 19
 OBJS-$(CONFIG_OSS_INDEV)                 += oss_audio.o
19 20
 OBJS-$(CONFIG_OSS_OUTDEV)                += oss_audio.o
... ...
@@ -42,6 +42,7 @@ void avdevice_register_all(void)
42 42
     REGISTER_INOUTDEV (ALSA, alsa);
43 43
     REGISTER_INDEV    (BKTR, bktr);
44 44
     REGISTER_INDEV    (DV1394, dv1394);
45
+    REGISTER_INDEV    (FBDEV, fbdev);
45 46
     REGISTER_INDEV    (JACK, jack);
46 47
     REGISTER_INOUTDEV (OSS, oss);
47 48
     REGISTER_INDEV    (V4L2, v4l2);
... ...
@@ -22,8 +22,8 @@
22 22
 #include "libavutil/avutil.h"
23 23
 
24 24
 #define LIBAVDEVICE_VERSION_MAJOR 52
25
-#define LIBAVDEVICE_VERSION_MINOR  2
26
-#define LIBAVDEVICE_VERSION_MICRO  3
25
+#define LIBAVDEVICE_VERSION_MINOR  3
26
+#define LIBAVDEVICE_VERSION_MICRO  0
27 27
 
28 28
 #define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \
29 29
                                                LIBAVDEVICE_VERSION_MINOR, \
30 30
new file mode 100644
... ...
@@ -0,0 +1,252 @@
0
+/*
1
+ * Copyright (c) 2011 Stefano Sabatini
2
+ * Copyright (c) 2009 Giliard B. de Freitas <giliarde@gmail.com>
3
+ * Copyright (C) 2002 Gunnar Monell <gmo@linux.nu>
4
+ *
5
+ * This file is part of FFmpeg.
6
+ *
7
+ * FFmpeg is free software; you can redistribute it and/or
8
+ * modify it under the terms of the GNU Lesser General Public
9
+ * License as published by the Free Software Foundation; either
10
+ * version 2.1 of the License, or (at your option) any later version.
11
+ *
12
+ * FFmpeg is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
+ * Lesser General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU Lesser General Public
18
+ * License along with FFmpeg; if not, write to the Free Software
19
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
+ */
21
+
22
+/**
23
+ * @file
24
+ * Linux framebuffer input device,
25
+ * inspired by code from fbgrab.c by Gunnar Monell.
26
+ * See also http://linux-fbdev.sourceforge.net/.
27
+ */
28
+
29
+/* #define DEBUG */
30
+
31
+#include <unistd.h>
32
+#include <fcntl.h>
33
+#include <sys/ioctl.h>
34
+#include <sys/time.h>
35
+#include <sys/mman.h>
36
+#include <time.h>
37
+#include <linux/fb.h>
38
+
39
+#include "libavutil/mem.h"
40
+#include "libavutil/pixdesc.h"
41
+#include "libavformat/avformat.h"
42
+
43
+struct rgb_pixfmt_map_entry {
44
+    int bits_per_pixel;
45
+    int red_offset, green_offset, blue_offset, alpha_offset;
46
+    enum PixelFormat pixfmt;
47
+};
48
+
49
+static struct rgb_pixfmt_map_entry rgb_pixfmt_map[] = {
50
+    // bpp, red_offset,  green_offset, blue_offset, alpha_offset, pixfmt
51
+    {  32,       0,           8,          16,           24,   PIX_FMT_RGBA  },
52
+    {  32,      16,           8,           0,           24,   PIX_FMT_BGRA  },
53
+    {  32,       8,          16,          24,            0,   PIX_FMT_ARGB  },
54
+    {  32,       3,           2,           8,            0,   PIX_FMT_ABGR  },
55
+    {  24,       0,           8,          16,            0,   PIX_FMT_RGB24 },
56
+    {  24,      16,           8,           0,            0,   PIX_FMT_BGR24 },
57
+};
58
+
59
+static enum PixelFormat
60
+get_pixfmt_from_fb_varinfo(struct fb_var_screeninfo *varinfo)
61
+{
62
+    int i;
63
+
64
+    for (i = 0; i < FF_ARRAY_ELEMS(rgb_pixfmt_map); i++) {
65
+        struct rgb_pixfmt_map_entry *entry = &rgb_pixfmt_map[i];
66
+        if (entry->bits_per_pixel == varinfo->bits_per_pixel &&
67
+            entry->red_offset     == varinfo->red.offset     &&
68
+            entry->green_offset   == varinfo->green.offset   &&
69
+            entry->blue_offset    == varinfo->blue.offset)
70
+            return entry->pixfmt;
71
+    }
72
+
73
+    return PIX_FMT_NONE;
74
+}
75
+
76
+typedef struct {
77
+    int frame_size;          ///< size in bytes of a grabbed frame
78
+    AVRational time_base;    ///< time base
79
+    int64_t time_frame;      ///< time for the next frame to output (in 1/1000000 units)
80
+
81
+    int fd;                  ///< framebuffer device file descriptor
82
+    int width, heigth;       ///< assumed frame resolution
83
+    int frame_linesize;      ///< linesize of the output frame, it is assumed to be constant
84
+    int bytes_per_pixel;
85
+
86
+    struct fb_var_screeninfo varinfo; ///< variable info;
87
+    struct fb_fix_screeninfo fixinfo; ///< fixed    info;
88
+
89
+    uint8_t *data;           ///< framebuffer data
90
+} FBDevContext;
91
+
92
+av_cold static int fbdev_read_header(AVFormatContext *avctx,
93
+                                     AVFormatParameters *ap)
94
+{
95
+    FBDevContext *fbdev = avctx->priv_data;
96
+    AVStream *st = NULL;
97
+    enum PixelFormat pix_fmt;
98
+    int ret, flags = O_RDONLY;
99
+
100
+    if (!(st = av_new_stream(avctx, 0)))
101
+        return AVERROR(ENOMEM);
102
+    av_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in microseconds */
103
+
104
+    if (ap->time_base.den <= 0) {
105
+        av_log(avctx, AV_LOG_ERROR, "Invalid time base %d/%d\n",
106
+               ap->time_base.num, ap->time_base.den);
107
+        return AVERROR(EINVAL);
108
+    }
109
+
110
+    /* NONBLOCK is ignored by the fbdev driver, only set for consistency */
111
+    if (avctx->flags & AVFMT_FLAG_NONBLOCK)
112
+        flags |= O_NONBLOCK;
113
+
114
+    if ((fbdev->fd = open(avctx->filename, flags)) == -1) {
115
+        ret = AVERROR(errno);
116
+        av_log(avctx, AV_LOG_ERROR,
117
+               "Could not open framebuffer device '%s': %s\n",
118
+               avctx->filename, strerror(ret));
119
+        return ret;
120
+    }
121
+
122
+    if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0) {
123
+        ret = AVERROR(errno);
124
+        av_log(avctx, AV_LOG_ERROR,
125
+               "FBIOGET_VSCREENINFO: %s\n", strerror(errno));
126
+        goto fail;
127
+    }
128
+
129
+    if (ioctl(fbdev->fd, FBIOGET_FSCREENINFO, &fbdev->fixinfo) < 0) {
130
+        ret = AVERROR(errno);
131
+        av_log(avctx, AV_LOG_ERROR,
132
+               "FBIOGET_FSCREENINFO: %s\n", strerror(errno));
133
+        goto fail;
134
+    }
135
+
136
+    pix_fmt = get_pixfmt_from_fb_varinfo(&fbdev->varinfo);
137
+    if (pix_fmt == PIX_FMT_NONE) {
138
+        ret = AVERROR(EINVAL);
139
+        av_log(avctx, AV_LOG_ERROR,
140
+               "Framebuffer pixel format not supported.\n");
141
+        goto fail;
142
+    }
143
+
144
+    fbdev->width           = fbdev->varinfo.xres;
145
+    fbdev->heigth          = fbdev->varinfo.yres;
146
+    fbdev->bytes_per_pixel = (fbdev->varinfo.bits_per_pixel + 7) >> 3;
147
+    fbdev->frame_linesize  = fbdev->width * fbdev->bytes_per_pixel;
148
+    fbdev->frame_size      = fbdev->frame_linesize * fbdev->heigth;
149
+    fbdev->time_base       = ap->time_base;
150
+    fbdev->time_frame      = AV_NOPTS_VALUE;
151
+    fbdev->data = mmap(NULL, fbdev->fixinfo.smem_len, PROT_READ, MAP_SHARED, fbdev->fd, 0);
152
+    if (fbdev->data == MAP_FAILED) {
153
+        ret = AVERROR(errno);
154
+        av_log(avctx, AV_LOG_ERROR, "Error in mmap(): %s\n", strerror(errno));
155
+        goto fail;
156
+    }
157
+
158
+    st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
159
+    st->codec->codec_id   = CODEC_ID_RAWVIDEO;
160
+    st->codec->width      = fbdev->width;
161
+    st->codec->height     = fbdev->heigth;
162
+    st->codec->pix_fmt    = pix_fmt;
163
+    st->codec->time_base  = ap->time_base;
164
+    st->codec->bit_rate   =
165
+        fbdev->width * fbdev->heigth * fbdev->bytes_per_pixel / av_q2d(ap->time_base) * 8;
166
+
167
+    av_log(avctx, AV_LOG_INFO,
168
+           "w:%d h:%d bpp:%d pixfmt:%s tb:%d/%d bit_rate:%d\n",
169
+           fbdev->width, fbdev->heigth, fbdev->varinfo.bits_per_pixel,
170
+           av_pix_fmt_descriptors[pix_fmt].name,
171
+           ap->time_base.num, ap->time_base.den,
172
+           st->codec->bit_rate);
173
+    return 0;
174
+
175
+fail:
176
+    close(fbdev->fd);
177
+    return ret;
178
+}
179
+
180
+static int fbdev_read_packet(AVFormatContext *avctx, AVPacket *pkt)
181
+{
182
+    FBDevContext *fbdev = avctx->priv_data;
183
+    int64_t curtime, delay;
184
+    struct timespec ts;
185
+    int i, ret;
186
+    uint8_t *pin, *pout;
187
+
188
+    if (fbdev->time_frame == AV_NOPTS_VALUE)
189
+        fbdev->time_frame = av_gettime();
190
+
191
+    /* wait based on the frame rate */
192
+    while (1) {
193
+        curtime = av_gettime();
194
+        delay = fbdev->time_frame - curtime;
195
+        av_dlog(avctx,
196
+                "time_frame:%"PRId64" curtime:%"PRId64" delay:%"PRId64"\n",
197
+                fbdev->time_frame, curtime, delay);
198
+        if (delay <= 0) {
199
+            fbdev->time_frame += INT64_C(1000000) * av_q2d(fbdev->time_base);
200
+            break;
201
+        }
202
+        if (avctx->flags & AVFMT_FLAG_NONBLOCK)
203
+            return AVERROR(EAGAIN);
204
+        ts.tv_sec  =  delay / 1000000;
205
+        ts.tv_nsec = (delay % 1000000) * 1000;
206
+        while (nanosleep(&ts, &ts) == EINTR);
207
+    }
208
+
209
+    if ((ret = av_new_packet(pkt, fbdev->frame_size)) < 0)
210
+        return ret;
211
+
212
+    /* refresh fbdev->varinfo, visible data position may change at each call */
213
+    if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0)
214
+        av_log(avctx, AV_LOG_WARNING,
215
+               "Error refreshing variable info: %s\n", strerror(errno));
216
+
217
+    pkt->pts = curtime;
218
+
219
+    /* compute visible data offset */
220
+    pin = fbdev->data + fbdev->bytes_per_pixel * fbdev->varinfo.xoffset +
221
+                        fbdev->varinfo.yoffset * fbdev->fixinfo.line_length;
222
+    pout = pkt->data;
223
+
224
+    for (i = 0; i < fbdev->heigth; i++) {
225
+        memcpy(pout, pin, fbdev->frame_linesize);
226
+        pin  += fbdev->fixinfo.line_length;
227
+        pout += fbdev->frame_linesize;
228
+    }
229
+
230
+    return fbdev->frame_size;
231
+}
232
+
233
+av_cold static int fbdev_read_close(AVFormatContext *avctx)
234
+{
235
+    FBDevContext *fbdev = avctx->priv_data;
236
+
237
+    munmap(fbdev->data, fbdev->frame_size);
238
+    close(fbdev->fd);
239
+
240
+    return 0;
241
+}
242
+
243
+AVInputFormat ff_fbdev_demuxer = {
244
+    .name           = "fbdev",
245
+    .long_name      = NULL_IF_CONFIG_SMALL("Linux framebuffer"),
246
+    .priv_data_size = sizeof(FBDevContext),
247
+    .read_header    = fbdev_read_header,
248
+    .read_packet    = fbdev_read_packet,
249
+    .read_close     = fbdev_read_close,
250
+    .flags          = AVFMT_NOFILE,
251
+};