391 lines
12 KiB
C
391 lines
12 KiB
C
/*
|
|
* Copyright (c) 2013 Lukasz Marek
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <poll.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/mman.h>
|
|
#include "libavutil/pixdesc.h"
|
|
#include "libavutil/log.h"
|
|
#include "libavutil/opt.h"
|
|
#include "libavformat/avformat.h"
|
|
#include "libavformat/mux.h"
|
|
#include "fbdev_common.h"
|
|
#include "avdevice.h"
|
|
|
|
#define SAFE_CLOSE(fd) do { if (fd >= 0) { close(fd); fd = -1; } } while (0)
|
|
|
|
typedef struct {
|
|
AVClass *class; ///< class for private options
|
|
int xoffset; ///< x coordinate of top left corner
|
|
int yoffset; ///< y coordinate of top left corner
|
|
struct fb_var_screeninfo varinfo; ///< framebuffer variable info
|
|
struct fb_fix_screeninfo fixinfo; ///< framebuffer fixed info
|
|
struct fb_planeinfo_s planeinfo; ///< framebuffer plane info
|
|
int fd; ///< framebuffer device file descriptor
|
|
uint8_t *data; ///< framebuffer data
|
|
bool stopped; ///< stop required apps
|
|
} FBDevContext;
|
|
|
|
static av_cold int fbdev_write_header(AVFormatContext *h)
|
|
{
|
|
FBDevContext *fbdev = h->priv_data;
|
|
enum AVPixelFormat pix_fmt;
|
|
int ret, flags = O_RDWR;
|
|
const char* device;
|
|
AVCodecParameters *par = h->streams[0]->codecpar;
|
|
enum AVPixelFormat video_pix_fmt = par->format;
|
|
|
|
if (fbdev->stopped)
|
|
return AVERROR_EOF;
|
|
|
|
if (h->nb_streams != 1 || h->streams[0]->codecpar->codec_type != AVMEDIA_TYPE_VIDEO) {
|
|
av_log(fbdev, AV_LOG_ERROR, "Only a single video stream is supported.\n");
|
|
return AVERROR(EINVAL);
|
|
}
|
|
|
|
if (h->url[0])
|
|
device = h->url;
|
|
else
|
|
device = ff_fbdev_default_device();
|
|
|
|
if ((fbdev->fd = avpriv_open(device, flags)) == -1) {
|
|
ret = AVERROR(errno);
|
|
av_log(h, AV_LOG_ERROR,
|
|
"Could not open framebuffer device '%s': %s\n",
|
|
device, av_err2str(ret));
|
|
return ret;
|
|
}
|
|
|
|
if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0) {
|
|
ret = AVERROR(errno);
|
|
av_log(h, AV_LOG_ERROR, "FBIOGET_VSCREENINFO: %s\n", av_err2str(ret));
|
|
goto fail;
|
|
}
|
|
|
|
if (ioctl(fbdev->fd, FBIOGET_FSCREENINFO, &fbdev->fixinfo) < 0) {
|
|
ret = AVERROR(errno);
|
|
av_log(h, AV_LOG_ERROR, "FBIOGET_FSCREENINFO: %s\n", av_err2str(ret));
|
|
goto fail;
|
|
}
|
|
|
|
if (ioctl(fbdev->fd, FBIOGET_PLANEINFO, &fbdev->planeinfo) < 0) {
|
|
ret = AVERROR(errno);
|
|
av_log(h, AV_LOG_ERROR, "FBIOGET_PLANEINFO: %s\n", av_err2str(ret));
|
|
goto fail;
|
|
}
|
|
|
|
pix_fmt = ff_get_pixfmt_from_fb_varinfo(&fbdev->varinfo);
|
|
if (pix_fmt == AV_PIX_FMT_NONE) {
|
|
ret = AVERROR(EINVAL);
|
|
av_log(h, AV_LOG_ERROR, "Framebuffer pixel format not supported.\n");
|
|
goto fail;
|
|
} else if (pix_fmt != video_pix_fmt) {
|
|
ret = AVERROR(EINVAL);
|
|
av_log(h, AV_LOG_ERROR, "Pixel format %s is not supported, use %s\n",
|
|
av_get_pix_fmt_name(video_pix_fmt), av_get_pix_fmt_name(pix_fmt));
|
|
goto fail;
|
|
}
|
|
|
|
fbdev->data = mmap(NULL, fbdev->fixinfo.smem_len, PROT_WRITE, MAP_SHARED, fbdev->fd, 0);
|
|
if (fbdev->data == MAP_FAILED) {
|
|
ret = AVERROR(errno);
|
|
av_log(h, AV_LOG_ERROR, "Error in mmap(): %s\n", av_err2str(ret));
|
|
goto fail;
|
|
}
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
SAFE_CLOSE(fbdev->fd);
|
|
return ret;
|
|
}
|
|
|
|
static int fbdev_write_frame(AVFormatContext *h, uint8_t *data, int src_line_size)
|
|
{
|
|
FBDevContext *fbdev = h->priv_data;
|
|
int bytes_to_copy, bytes_per_pixel;
|
|
int video_width, video_height;
|
|
AVCodecParameters *par;
|
|
struct pollfd pfd;
|
|
int disp_height;
|
|
int i, ret;
|
|
const uint8_t *pin;
|
|
uint8_t *pout;
|
|
|
|
par = h->streams[0]->codecpar;
|
|
bytes_per_pixel = ((par->bits_per_coded_sample + 7) >> 3);
|
|
|
|
video_width = par->width;
|
|
video_height = par->height;
|
|
|
|
|
|
if (fbdev->stopped)
|
|
return AVERROR_EOF;
|
|
|
|
if (fbdev->planeinfo.yres_virtual > fbdev->varinfo.yres) {
|
|
pfd.fd = fbdev->fd;
|
|
pfd.events = POLLOUT;
|
|
|
|
ret = poll(&pfd, 1, 0);
|
|
if (ret <= 0) {
|
|
av_log(h, AV_LOG_ERROR, "No event notification.\n");
|
|
return ret ? AVERROR(errno) : 0;
|
|
}
|
|
}
|
|
|
|
disp_height = FFMIN(fbdev->varinfo.yres, video_height);
|
|
bytes_to_copy = FFMIN(fbdev->varinfo.xres, video_width) * bytes_per_pixel;
|
|
|
|
fbdev->planeinfo.yoffset += fbdev->varinfo.yres;
|
|
fbdev->planeinfo.yoffset %= fbdev->planeinfo.yres_virtual;
|
|
|
|
pin = data;
|
|
pout = fbdev->data +
|
|
bytes_per_pixel * fbdev->planeinfo.xoffset +
|
|
fbdev->planeinfo.yoffset * fbdev->planeinfo.stride;
|
|
|
|
if (fbdev->xoffset) {
|
|
if (fbdev->xoffset < 0) {
|
|
if (-fbdev->xoffset >= video_width) //nothing to display
|
|
return 0;
|
|
bytes_to_copy += fbdev->xoffset * bytes_per_pixel;
|
|
pin -= fbdev->xoffset * bytes_per_pixel;
|
|
} else {
|
|
int diff = (video_width + fbdev->xoffset) - fbdev->varinfo.xres;
|
|
if (diff > 0) {
|
|
if (diff >= video_width) //nothing to display
|
|
return 0;
|
|
bytes_to_copy -= diff * bytes_per_pixel;
|
|
}
|
|
pout += bytes_per_pixel * fbdev->xoffset;
|
|
}
|
|
}
|
|
|
|
if (fbdev->yoffset) {
|
|
if (fbdev->yoffset < 0) {
|
|
if (-fbdev->yoffset >= video_height) //nothing to display
|
|
return 0;
|
|
disp_height += fbdev->yoffset;
|
|
pin -= fbdev->yoffset * src_line_size;
|
|
} else {
|
|
int diff = (video_height + fbdev->yoffset) - fbdev->varinfo.yres;
|
|
if (diff > 0) {
|
|
if (diff >= video_height) //nothing to display
|
|
return 0;
|
|
disp_height -= diff;
|
|
}
|
|
pout += fbdev->yoffset * fbdev->fixinfo.line_length;
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < disp_height; i++) {
|
|
memcpy(pout, pin, bytes_to_copy);
|
|
pout += fbdev->fixinfo.line_length;
|
|
pin += src_line_size;
|
|
}
|
|
|
|
if (fbdev->planeinfo.yres_virtual > fbdev->varinfo.yres) {
|
|
ret = ioctl(fbdev->fd, FBIOPAN_DISPLAY, &fbdev->planeinfo);
|
|
if (ret < 0) {
|
|
av_log(h, AV_LOG_ERROR, "Unable to pandisplay.\n");
|
|
return AVERROR(errno);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int fbdev_write_packet(AVFormatContext *h, AVPacket *pkt)
|
|
{
|
|
AVCodecParameters *par = h->streams[0]->codecpar;
|
|
int video_width = par->width;
|
|
int bytes_per_pixel = ((par->bits_per_coded_sample + 7) >> 3);
|
|
|
|
return fbdev_write_frame(h, pkt->data, video_width * bytes_per_pixel);
|
|
}
|
|
|
|
static av_cold int fbdev_write_trailer(AVFormatContext *h)
|
|
{
|
|
FBDevContext *fbdev = h->priv_data;
|
|
|
|
if (fbdev->data && fbdev->data != MAP_FAILED) {
|
|
munmap(fbdev->data, fbdev->fixinfo.smem_len);
|
|
fbdev->data = NULL;
|
|
}
|
|
SAFE_CLOSE(fbdev->fd);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int fbdev_get_device_list(AVFormatContext *s, AVDeviceInfoList *device_list)
|
|
{
|
|
return ff_fbdev_get_device_list(device_list);
|
|
}
|
|
|
|
|
|
static int fbdev_capbility_query_ranges(struct AVOptionRanges **ranges_, void *obj,
|
|
const char *key, int flags)
|
|
{
|
|
struct AVDeviceCapabilitiesQuery *devcap = obj;
|
|
struct AVFormatContext *h = devcap->device_context;
|
|
struct fb_var_screeninfo varinfo;
|
|
struct AVOptionRanges *ranges;
|
|
enum AVPixelFormat pix_fmt;
|
|
int ret = AVERROR(ENOMEM);
|
|
int fd;
|
|
|
|
fd = avpriv_open(h->url, O_RDWR | O_CLOEXEC);
|
|
if (fd < 0)
|
|
return AVERROR(errno);
|
|
|
|
if (ioctl(fd, FBIOGET_VSCREENINFO, &varinfo) < 0) {
|
|
SAFE_CLOSE(fd);
|
|
return AVERROR(errno);
|
|
}
|
|
|
|
SAFE_CLOSE(fd);
|
|
|
|
ranges = av_mallocz(sizeof(struct AVOptionRanges));
|
|
if (!ranges)
|
|
goto err;
|
|
|
|
if (!strcmp(key, "pixel_fmts")) {
|
|
pix_fmt = ff_get_pixfmt_from_fb_varinfo(&varinfo);
|
|
if (pix_fmt == AV_PIX_FMT_NONE) {
|
|
ret = AVERROR(EINVAL);
|
|
goto err;
|
|
}
|
|
|
|
ranges->nb_components = 1;
|
|
ranges->nb_ranges = 1;
|
|
ranges->range = av_mallocz(sizeof(AVOptionRange *));
|
|
if (!ranges->range)
|
|
goto err;
|
|
|
|
ranges->range[0] = av_mallocz(sizeof(AVOptionRange));
|
|
if (!ranges->range[0])
|
|
goto err;
|
|
|
|
ranges->range[0]->is_range = 0;
|
|
ranges->range[0]->value_min = pix_fmt;
|
|
ranges->range[0]->value_max = pix_fmt;
|
|
} else
|
|
goto err;
|
|
|
|
*ranges_ = ranges;
|
|
return ranges->nb_components;
|
|
|
|
err:
|
|
av_opt_freep_ranges(&ranges);
|
|
return ret;
|
|
}
|
|
|
|
static const AVClass fbdev_cap_class = {
|
|
.class_name = "fbdev outdev capbility",
|
|
.item_name = av_default_item_name,
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
.category = AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT,
|
|
.query_ranges = fbdev_capbility_query_ranges,
|
|
};
|
|
|
|
static int fbdev_control_message(AVFormatContext *h, int type,
|
|
void *data, size_t data_size)
|
|
{
|
|
FBDevContext *fbdev = h->priv_data;
|
|
struct fb_var_screeninfo varinfo;
|
|
enum AVPixelFormat pix_fmt;
|
|
int fd;
|
|
|
|
switch (type) {
|
|
case AV_APP_TO_DEV_GET_CAPS_REQUEST: {
|
|
struct AVDeviceCapabilitiesQuery *caps = data;
|
|
|
|
if (!caps)
|
|
return AVERROR(EINVAL);
|
|
|
|
caps->av_class = &fbdev_cap_class;
|
|
caps->device_context = h;
|
|
av_opt_set_defaults(caps);
|
|
|
|
return 0;
|
|
}
|
|
case AV_APP_TO_DEV_START: {
|
|
fbdev->stopped = false;
|
|
avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_STATE_CHANGED, NULL, 0);
|
|
return 0;
|
|
}
|
|
case AV_APP_TO_DEV_STOP: {
|
|
fbdev->stopped = true;
|
|
avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_STATE_CHANGED, NULL, 0);
|
|
return 0;
|
|
}
|
|
case AV_APP_TO_DEV_PLAY: {
|
|
fbdev->stopped = false;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
return AVERROR(ENOSYS);
|
|
}
|
|
|
|
static int fbdev_write_uncoded_frame(AVFormatContext *h, int stream_index,
|
|
AVFrame **frame, unsigned flags)
|
|
{
|
|
if (flags & AV_WRITE_UNCODED_FRAME_QUERY)
|
|
return 0;
|
|
|
|
return fbdev_write_frame(h, (*frame)->data[0], (*frame)->linesize[0]);
|
|
}
|
|
|
|
#define OFFSET(x) offsetof(FBDevContext, x)
|
|
#define ENC AV_OPT_FLAG_ENCODING_PARAM
|
|
static const AVOption options[] = {
|
|
{ "xoffset", "set x coordinate of top left corner", OFFSET(xoffset), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, ENC },
|
|
{ "yoffset", "set y coordinate of top left corner", OFFSET(yoffset), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, ENC },
|
|
{ "stop", "set stop flag init value", OFFSET(stopped), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, ENC },
|
|
{ NULL }
|
|
};
|
|
|
|
static const AVClass fbdev_class = {
|
|
.class_name = "fbdev outdev",
|
|
.item_name = av_default_item_name,
|
|
.option = options,
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
.category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT,
|
|
};
|
|
|
|
const AVOutputFormat ff_fbdev_muxer = {
|
|
.name = "fbdev",
|
|
.long_name = NULL_IF_CONFIG_SMALL("Linux framebuffer"),
|
|
.priv_data_size = sizeof(FBDevContext),
|
|
.audio_codec = AV_CODEC_ID_NONE,
|
|
.video_codec = AV_CODEC_ID_RAWVIDEO,
|
|
.write_header = fbdev_write_header,
|
|
.write_packet = fbdev_write_packet,
|
|
.write_trailer = fbdev_write_trailer,
|
|
.control_message = fbdev_control_message,
|
|
.write_uncoded_frame = fbdev_write_uncoded_frame,
|
|
.get_device_list = fbdev_get_device_list,
|
|
.flags = AVFMT_NOFILE | AVFMT_VARIABLE_FPS | AVFMT_NOTIMESTAMPS,
|
|
.priv_class = &fbdev_class,
|
|
};
|