mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
9eff6384cc
* move setvideomode to common place * implement more croping and 3d support * more api unification * more refactoring * osx fix * next step * add a mock for osx grabber. Now it is possible to test compile on none osx platforms. * more unifications ... * remove obsolete includes and grabbers are not dyn allocated. dispmanx needs rework an probaly not work atm * first version of dispmanx mock. it compiles, but outputs a black image * now dispmanx mock works! * activate mocks in travis linux build prepare dispmanx to rgb image out * dispmanx now with image rgb output fix deadlock with w/h -1 in grabber v4l cleanups * fix json * fix some runtime stuff * Update FramebufferWrapper.cpp fix missing code * unify grabframe * 3d and croping for amlogic * fix setimage not working * make use of templates save some codelines * save more code lines
281 lines
7.7 KiB
C++
Executable File
281 lines
7.7 KiB
C++
Executable File
#include <utils/Logger.h>
|
|
#include <grabber/X11Grabber.h>
|
|
|
|
X11Grabber::X11Grabber(bool useXGetImage, int cropLeft, int cropRight, int cropTop, int cropBottom, int horizontalPixelDecimation, int verticalPixelDecimation)
|
|
: Grabber("X11GRABBER", 0, 0, cropLeft, cropRight, cropTop, cropBottom)
|
|
, _useXGetImage(useXGetImage)
|
|
, _x11Display(nullptr)
|
|
, _pixmap(None)
|
|
, _srcFormat(nullptr)
|
|
, _dstFormat(nullptr)
|
|
, _srcPicture(None)
|
|
, _dstPicture(None)
|
|
, _horizontalDecimation(horizontalPixelDecimation)
|
|
, _verticalDecimation(verticalPixelDecimation)
|
|
, _screenWidth(0)
|
|
, _screenHeight(0)
|
|
, _src_x(cropLeft)
|
|
, _src_y(cropTop)
|
|
, _image(0,0)
|
|
{
|
|
_useImageResampler = false;
|
|
_imageResampler.setCropping(0, 0, 0, 0); // cropping is performed by XRender, XShmGetImage or XGetImage
|
|
memset(&_pictAttr, 0, sizeof(_pictAttr));
|
|
_pictAttr.repeat = RepeatNone;
|
|
}
|
|
|
|
X11Grabber::~X11Grabber()
|
|
{
|
|
if (_x11Display != nullptr)
|
|
{
|
|
freeResources();
|
|
XCloseDisplay(_x11Display);
|
|
}
|
|
}
|
|
|
|
void X11Grabber::freeResources()
|
|
{
|
|
// Cleanup allocated resources of the X11 grab
|
|
XDestroyImage(_xImage);
|
|
if(_XShmAvailable && !_useXGetImage)
|
|
{
|
|
XShmDetach(_x11Display, &_shminfo);
|
|
shmdt(_shminfo.shmaddr);
|
|
shmctl(_shminfo.shmid, IPC_RMID, 0);
|
|
}
|
|
if (_XRenderAvailable && !_useXGetImage)
|
|
{
|
|
XRenderFreePicture(_x11Display, _srcPicture);
|
|
XRenderFreePicture(_x11Display, _dstPicture);
|
|
XFreePixmap(_x11Display, _pixmap);
|
|
}
|
|
}
|
|
|
|
void X11Grabber::setupResources()
|
|
{
|
|
if(_XShmAvailable && !_useXGetImage)
|
|
{
|
|
_xImage = XShmCreateImage(_x11Display, _windowAttr.visual, _windowAttr.depth, ZPixmap, NULL, &_shminfo, _width, _height);
|
|
_shminfo.shmid = shmget(IPC_PRIVATE, _xImage->bytes_per_line * _xImage->height, IPC_CREAT|0777);
|
|
_xImage->data = (char*)shmat(_shminfo.shmid,0,0);
|
|
_shminfo.shmaddr = _xImage->data;
|
|
_shminfo.readOnly = False;
|
|
XShmAttach(_x11Display, &_shminfo);
|
|
}
|
|
if (_XRenderAvailable && !_useXGetImage)
|
|
{
|
|
if(_XShmPixmapAvailable)
|
|
{
|
|
_pixmap = XShmCreatePixmap(_x11Display, _window, _xImage->data, &_shminfo, _width, _height, _windowAttr.depth);
|
|
}
|
|
else
|
|
{
|
|
_pixmap = XCreatePixmap(_x11Display, _window, _width, _height, _windowAttr.depth);
|
|
}
|
|
_srcFormat = XRenderFindVisualFormat(_x11Display, _windowAttr.visual);
|
|
_dstFormat = XRenderFindVisualFormat(_x11Display, _windowAttr.visual);
|
|
_srcPicture = XRenderCreatePicture(_x11Display, _window, _srcFormat, CPRepeat, &_pictAttr);
|
|
_dstPicture = XRenderCreatePicture(_x11Display, _pixmap, _dstFormat, CPRepeat, &_pictAttr);
|
|
XRenderSetPictureFilter(_x11Display, _srcPicture, FilterBilinear, NULL, 0);
|
|
}
|
|
}
|
|
|
|
bool X11Grabber::Setup()
|
|
{
|
|
_x11Display = XOpenDisplay(NULL);
|
|
if (_x11Display == nullptr)
|
|
{
|
|
Error(_log, "Unable to open display");
|
|
if (getenv("DISPLAY"))
|
|
{
|
|
Error(_log, "%s",getenv("DISPLAY"));
|
|
}
|
|
else
|
|
{
|
|
Error(_log, "DISPLAY environment variable not set");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
_window = DefaultRootWindow(_x11Display);
|
|
|
|
int dummy, pixmaps_supported;
|
|
|
|
_XRenderAvailable = XRenderQueryExtension(_x11Display, &dummy, &dummy);
|
|
_XShmAvailable = XShmQueryExtension(_x11Display);
|
|
XShmQueryVersion(_x11Display, &dummy, &dummy, &pixmaps_supported);
|
|
_XShmPixmapAvailable = pixmaps_supported && XShmPixmapFormat(_x11Display) == ZPixmap;
|
|
|
|
// Image scaling is performed by XRender when available, otherwise by ImageResampler
|
|
_imageResampler.setHorizontalPixelDecimation(_XRenderAvailable ? 1 : _horizontalDecimation);
|
|
_imageResampler.setVerticalPixelDecimation(_XRenderAvailable ? 1 : _verticalDecimation);
|
|
|
|
bool result = (updateScreenDimensions(true) >=0);
|
|
ErrorIf(!result, _log, "X11 Grabber start failed");
|
|
return result;
|
|
}
|
|
|
|
int X11Grabber::grabFrame(Image<ColorRgb> & image, bool forceUpdate)
|
|
{
|
|
if (forceUpdate)
|
|
updateScreenDimensions(forceUpdate);
|
|
|
|
if (_XRenderAvailable && !_useXGetImage)
|
|
{
|
|
double scale_x = static_cast<double>(_windowAttr.width / _horizontalDecimation) / static_cast<double>(_windowAttr.width);
|
|
double scale_y = static_cast<double>(_windowAttr.height / _verticalDecimation) / static_cast<double>(_windowAttr.height);
|
|
double scale = qMin(scale_y, scale_x);
|
|
|
|
_transform =
|
|
{
|
|
{
|
|
{
|
|
XDoubleToFixed(1),
|
|
XDoubleToFixed(0),
|
|
XDoubleToFixed(0)
|
|
},
|
|
{
|
|
XDoubleToFixed(0),
|
|
XDoubleToFixed(1),
|
|
XDoubleToFixed(0)
|
|
},
|
|
{
|
|
XDoubleToFixed(0),
|
|
XDoubleToFixed(0),
|
|
XDoubleToFixed(scale)
|
|
}
|
|
}
|
|
};
|
|
|
|
XRenderSetPictureTransform (_x11Display, _srcPicture, &_transform);
|
|
|
|
// display, op, src, mask, dest, src_x = cropLeft,
|
|
// src_y = cropTop, mask_x, mask_y, dest_x, dest_y, width, height
|
|
XRenderComposite(
|
|
_x11Display, PictOpSrc, _srcPicture, None, _dstPicture, ( _src_x/_horizontalDecimation),
|
|
(_src_y/_verticalDecimation), 0, 0, 0, 0, _width, _height);
|
|
|
|
XSync(_x11Display, False);
|
|
|
|
if (_XShmAvailable)
|
|
{
|
|
XShmGetImage(_x11Display, _pixmap, _xImage, 0, 0, AllPlanes);
|
|
}
|
|
else
|
|
{
|
|
_xImage = XGetImage(_x11Display, _pixmap, 0, 0, _width, _height, AllPlanes, ZPixmap);
|
|
}
|
|
}
|
|
else if (_XShmAvailable && !_useXGetImage)
|
|
{
|
|
// use xshm
|
|
XShmGetImage(_x11Display, _window, _xImage, _src_x, _src_y, AllPlanes);
|
|
}
|
|
else
|
|
{
|
|
// all things done by xgetimage
|
|
_xImage = XGetImage(_x11Display, _window, _src_x, _src_y, _width, _height, AllPlanes, ZPixmap);
|
|
}
|
|
|
|
if (_xImage == nullptr)
|
|
{
|
|
Error(_log, "Grab Failed!");
|
|
return -1;
|
|
}
|
|
|
|
_imageResampler.processImage(reinterpret_cast<const uint8_t *>(_xImage->data), _xImage->width, _xImage->height, _xImage->bytes_per_line, PIXELFORMAT_BGR32, image);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int X11Grabber::updateScreenDimensions(bool force)
|
|
{
|
|
const Status status = XGetWindowAttributes(_x11Display, _window, &_windowAttr);
|
|
if (status == 0)
|
|
{
|
|
Error(_log, "Failed to obtain window attributes");
|
|
return -1;
|
|
}
|
|
|
|
if (!force && _screenWidth == unsigned(_windowAttr.width) && _screenHeight == unsigned(_windowAttr.height))
|
|
{
|
|
// No update required
|
|
return 0;
|
|
}
|
|
|
|
if (_screenWidth || _screenHeight)
|
|
{
|
|
freeResources();
|
|
}
|
|
|
|
Info(_log, "Update of screen resolution: [%dx%d] to [%dx%d]", _screenWidth, _screenHeight, _windowAttr.width, _windowAttr.height);
|
|
_screenWidth = _windowAttr.width;
|
|
_screenHeight = _windowAttr.height;
|
|
|
|
int width=0, height=0;
|
|
|
|
// Image scaling is performed by XRender when available, otherwise by ImageResampler
|
|
if (_XRenderAvailable && !_useXGetImage)
|
|
{
|
|
width = (_screenWidth > unsigned(_cropLeft + _cropRight))
|
|
? ((_screenWidth - _cropLeft - _cropRight) / _horizontalDecimation)
|
|
: _screenWidth / _horizontalDecimation;
|
|
|
|
height = (_screenHeight > unsigned(_cropTop + _cropBottom))
|
|
? ((_screenHeight - _cropTop - _cropBottom) / _verticalDecimation)
|
|
: _screenHeight / _verticalDecimation;
|
|
|
|
Info(_log, "Using XRender for grabbing");
|
|
}
|
|
else
|
|
{
|
|
width = (_screenWidth > unsigned(_cropLeft + _cropRight))
|
|
? (_screenWidth - _cropLeft - _cropRight)
|
|
: _screenWidth;
|
|
|
|
height = (_screenHeight > unsigned(_cropTop + _cropBottom))
|
|
? (_screenHeight - _cropTop - _cropBottom)
|
|
: _screenHeight;
|
|
|
|
Info(_log, "Using XGetImage for grabbing");
|
|
}
|
|
|
|
// calculate final image dimensions and adjust top/left cropping in 3D modes
|
|
switch (_videoMode)
|
|
{
|
|
case VIDEO_3DSBS:
|
|
_width = width /2;
|
|
_height = height;
|
|
_src_x = _cropLeft / 2;
|
|
_src_y = _cropTop;
|
|
break;
|
|
case VIDEO_3DTAB:
|
|
_width = width;
|
|
_height = height / 2;
|
|
_src_x = _cropLeft;
|
|
_src_y = _cropTop / 2;
|
|
break;
|
|
case VIDEO_2D:
|
|
default:
|
|
_width = width;
|
|
_height = height;
|
|
_src_x = _cropLeft;
|
|
_src_y = _cropTop;
|
|
break;
|
|
}
|
|
|
|
Info(_log, "Update output image resolution: [%dx%d] to [%dx%d]", _image.width(), _image.height(), _width, _height);
|
|
|
|
_image.resize(_width, _height);
|
|
setupResources();
|
|
|
|
return 1;
|
|
}
|
|
|
|
void X11Grabber::setVideoMode(VideoMode mode)
|
|
{
|
|
Info(_log, "a %d", mode);
|
|
Grabber::setVideoMode(mode);
|
|
updateScreenDimensions(true);
|
|
}
|