FFmpeg
fbdev_enc.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Lukasz Marek
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <sys/ioctl.h>
24 #include <sys/mman.h>
25 #include <linux/fb.h>
26 #include "libavutil/file_open.h"
27 #include "libavutil/pixdesc.h"
28 #include "libavutil/log.h"
29 #include "libavutil/opt.h"
30 #include "libavformat/avformat.h"
31 #include "libavformat/mux.h"
32 #include "fbdev_common.h"
33 #include "avdevice.h"
34 
35 typedef struct {
36  AVClass *class; ///< class for private options
37  int xoffset; ///< x coordinate of top left corner
38  int yoffset; ///< y coordinate of top left corner
39  struct fb_var_screeninfo varinfo; ///< framebuffer variable info
40  struct fb_fix_screeninfo fixinfo; ///< framebuffer fixed info
41  int fd; ///< framebuffer device file descriptor
42  uint8_t *data; ///< framebuffer data
43 } FBDevContext;
44 
46 {
47  FBDevContext *fbdev = h->priv_data;
49  int ret, flags = O_RDWR;
50  const char* device;
51 
52  if (h->nb_streams != 1 || h->streams[0]->codecpar->codec_type != AVMEDIA_TYPE_VIDEO) {
53  av_log(fbdev, AV_LOG_ERROR, "Only a single video stream is supported.\n");
54  return AVERROR(EINVAL);
55  }
56 
57  if (h->url[0])
58  device = h->url;
59  else
60  device = ff_fbdev_default_device();
61 
62  if ((fbdev->fd = avpriv_open(device, flags)) == -1) {
63  ret = AVERROR(errno);
65  "Could not open framebuffer device '%s': %s\n",
66  device, av_err2str(ret));
67  return ret;
68  }
69 
70  if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0) {
71  ret = AVERROR(errno);
72  av_log(h, AV_LOG_ERROR, "FBIOGET_VSCREENINFO: %s\n", av_err2str(ret));
73  goto fail;
74  }
75 
76  if (ioctl(fbdev->fd, FBIOGET_FSCREENINFO, &fbdev->fixinfo) < 0) {
77  ret = AVERROR(errno);
78  av_log(h, AV_LOG_ERROR, "FBIOGET_FSCREENINFO: %s\n", av_err2str(ret));
79  goto fail;
80  }
81 
83  if (pix_fmt == AV_PIX_FMT_NONE) {
84  ret = AVERROR(EINVAL);
85  av_log(h, AV_LOG_ERROR, "Framebuffer pixel format not supported.\n");
86  goto fail;
87  }
88 
89  fbdev->data = mmap(NULL, fbdev->fixinfo.smem_len, PROT_WRITE, MAP_SHARED, fbdev->fd, 0);
90  if (fbdev->data == MAP_FAILED) {
91  ret = AVERROR(errno);
92  av_log(h, AV_LOG_ERROR, "Error in mmap(): %s\n", av_err2str(ret));
93  goto fail;
94  }
95 
96  return 0;
97  fail:
98  close(fbdev->fd);
99  return ret;
100 }
101 
103 {
104  FBDevContext *fbdev = h->priv_data;
105  const uint8_t *pin;
106  uint8_t *pout;
107  enum AVPixelFormat fb_pix_fmt;
108  int disp_height;
109  int bytes_to_copy;
110  AVCodecParameters *par = h->streams[0]->codecpar;
111  enum AVPixelFormat video_pix_fmt = par->format;
112  int video_width = par->width;
113  int video_height = par->height;
114  int bytes_per_pixel = ((par->bits_per_coded_sample + 7) >> 3);
115  int src_line_size = video_width * bytes_per_pixel;
116  int i;
117 
118  if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0)
120  "Error refreshing variable info: %s\n", av_err2str(AVERROR(errno)));
121 
122  fb_pix_fmt = ff_get_pixfmt_from_fb_varinfo(&fbdev->varinfo);
123 
124  if (fb_pix_fmt != video_pix_fmt) {
125  av_log(h, AV_LOG_ERROR, "Pixel format %s is not supported, use %s\n",
126  av_get_pix_fmt_name(video_pix_fmt), av_get_pix_fmt_name(fb_pix_fmt));
127  return AVERROR(EINVAL);
128  }
129 
130  disp_height = FFMIN(fbdev->varinfo.yres, video_height);
131  bytes_to_copy = FFMIN(fbdev->varinfo.xres, video_width) * bytes_per_pixel;
132 
133  pin = pkt->data;
134  pout = fbdev->data +
135  bytes_per_pixel * fbdev->varinfo.xoffset +
136  fbdev->varinfo.yoffset * fbdev->fixinfo.line_length;
137 
138  if (fbdev->xoffset) {
139  if (fbdev->xoffset < 0) {
140  if (-fbdev->xoffset >= video_width) //nothing to display
141  return 0;
142  bytes_to_copy += fbdev->xoffset * bytes_per_pixel;
143  pin -= fbdev->xoffset * bytes_per_pixel;
144  } else {
145  int diff = (video_width + fbdev->xoffset) - fbdev->varinfo.xres;
146  if (diff > 0) {
147  if (diff >= video_width) //nothing to display
148  return 0;
149  bytes_to_copy -= diff * bytes_per_pixel;
150  }
151  pout += bytes_per_pixel * fbdev->xoffset;
152  }
153  }
154 
155  if (fbdev->yoffset) {
156  if (fbdev->yoffset < 0) {
157  if (-fbdev->yoffset >= video_height) //nothing to display
158  return 0;
159  disp_height += fbdev->yoffset;
160  pin -= fbdev->yoffset * src_line_size;
161  } else {
162  int diff = (video_height + fbdev->yoffset) - fbdev->varinfo.yres;
163  if (diff > 0) {
164  if (diff >= video_height) //nothing to display
165  return 0;
166  disp_height -= diff;
167  }
168  pout += fbdev->yoffset * fbdev->fixinfo.line_length;
169  }
170  }
171 
172  for (i = 0; i < disp_height; i++) {
173  memcpy(pout, pin, bytes_to_copy);
174  pout += fbdev->fixinfo.line_length;
175  pin += src_line_size;
176  }
177 
178  return 0;
179 }
180 
182 {
183  FBDevContext *fbdev = h->priv_data;
184  munmap(fbdev->data, fbdev->fixinfo.smem_len);
185  close(fbdev->fd);
186  return 0;
187 }
188 
190 {
191  return ff_fbdev_get_device_list(device_list);
192 }
193 
194 #define OFFSET(x) offsetof(FBDevContext, x)
195 #define ENC AV_OPT_FLAG_ENCODING_PARAM
196 static const AVOption options[] = {
197  { "xoffset", "set x coordinate of top left corner", OFFSET(xoffset), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, ENC },
198  { "yoffset", "set y coordinate of top left corner", OFFSET(yoffset), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, ENC },
199  { NULL }
200 };
201 
202 static const AVClass fbdev_class = {
203  .class_name = "fbdev outdev",
204  .item_name = av_default_item_name,
205  .option = options,
206  .version = LIBAVUTIL_VERSION_INT,
208 };
209 
211  .p.name = "fbdev",
212  .p.long_name = NULL_IF_CONFIG_SMALL("Linux framebuffer"),
213  .priv_data_size = sizeof(FBDevContext),
214  .p.audio_codec = AV_CODEC_ID_NONE,
215  .p.video_codec = AV_CODEC_ID_RAWVIDEO,
216  .write_header = fbdev_write_header,
217  .write_packet = fbdev_write_packet,
218  .write_trailer = fbdev_write_trailer,
219  .get_device_list = fbdev_get_device_list,
221  .p.priv_class = &fbdev_class,
222 };
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
AVOutputFormat::name
const char * name
Definition: avformat.h:510
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame 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. Frame references ownership and permissions
opt.h
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:47
AVFMT_VARIABLE_FPS
#define AVFMT_VARIABLE_FPS
Format allows variable fps.
Definition: avformat.h:482
AVFMT_NOTIMESTAMPS
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:479
ENC
#define ENC
Definition: fbdev_enc.c:195
AV_CODEC_ID_RAWVIDEO
@ AV_CODEC_ID_RAWVIDEO
Definition: codec_id.h:65
pixdesc.h
AVPacket::data
uint8_t * data
Definition: packet.h:522
AVOption
AVOption.
Definition: opt.h:346
data
const char data[16]
Definition: mxf.c:148
FBDevContext::xoffset
int xoffset
x coordinate of top left corner
Definition: fbdev_enc.c:37
FFOutputFormat::p
AVOutputFormat p
The public AVOutputFormat.
Definition: mux.h:36
fail
#define fail()
Definition: checkasm.h:179
FBDevContext::fixinfo
struct fb_fix_screeninfo fixinfo
fixed info;
Definition: fbdev_dec.c:61
ff_get_pixfmt_from_fb_varinfo
enum AVPixelFormat ff_get_pixfmt_from_fb_varinfo(struct fb_var_screeninfo *varinfo)
Definition: fbdev_common.c:49
pkt
AVPacket * pkt
Definition: movenc.c:59
FBDevContext::yoffset
int yoffset
y coordinate of top left corner
Definition: fbdev_enc.c:38
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_cold
#define av_cold
Definition: attributes.h:90
fbdev_write_packet
static int fbdev_write_packet(AVFormatContext *h, AVPacket *pkt)
Definition: fbdev_enc.c:102
ff_fbdev_get_device_list
int ff_fbdev_get_device_list(AVDeviceInfoList *device_list)
Definition: fbdev_common.c:73
s
#define s(width, name)
Definition: cbs_vp9.c:198
avpriv_open
int avpriv_open(const char *filename, int flags,...)
A wrapper for open() setting O_CLOEXEC.
Definition: file_open.c:67
pix_fmt
static enum AVPixelFormat pix_fmt
Definition: demux_decode.c:41
AVCodecParameters::width
int width
Video only.
Definition: codec_par.h:134
ff_fbdev_muxer
const FFOutputFormat ff_fbdev_muxer
Definition: fbdev_enc.c:210
FBDevContext::fd
int fd
framebuffer device file descriptor
Definition: fbdev_dec.c:55
fbdev_write_trailer
static av_cold int fbdev_write_trailer(AVFormatContext *h)
Definition: fbdev_enc.c:181
file_open.h
fbdev_get_device_list
static int fbdev_get_device_list(AVFormatContext *s, AVDeviceInfoList *device_list)
Definition: fbdev_enc.c:189
if
if(ret)
Definition: filter_design.txt:179
AVFormatContext
Format I/O context.
Definition: avformat.h:1255
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT
@ AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT
Definition: log.h:40
FFOutputFormat
Definition: mux.h:32
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:106
av_err2str
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: error.h:121
ff_fbdev_default_device
const char * ff_fbdev_default_device(void)
Definition: fbdev_common.c:65
AVFMT_NOFILE
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:468
OFFSET
#define OFFSET(x)
Definition: fbdev_enc.c:194
avdevice.h
fbdev_common.h
diff
static av_always_inline int diff(const struct color_info *a, const struct color_info *b, const int trans_thresh)
Definition: vf_paletteuse.c:164
log.h
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: codec_id.h:50
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:255
fbdev_write_header
static av_cold int fbdev_write_header(AVFormatContext *h)
Definition: fbdev_enc.c:45
AVCodecParameters::height
int height
Definition: codec_par.h:135
FBDevContext
Definition: fbdev_dec.c:49
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
ret
ret
Definition: filter_design.txt:187
AVClass::class_name
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:71
AVDeviceInfoList
List of devices.
Definition: avdevice.h:343
avformat.h
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
FBDevContext::varinfo
struct fb_var_screeninfo varinfo
variable info;
Definition: fbdev_dec.c:60
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: codec_par.h:110
AVCodecParameters::format
int format
Definition: codec_par.h:92
options
static const AVOption options[]
Definition: fbdev_enc.c:196
AVPacket
This structure stores compressed data.
Definition: packet.h:499
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:474
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
h
h
Definition: vp9dsp_template.c:2038
FBDevContext::data
uint8_t * data
framebuffer data
Definition: fbdev_dec.c:63
fbdev_class
static const AVClass fbdev_class
Definition: fbdev_enc.c:202
av_get_pix_fmt_name
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:2882
mux.h