Logging for dispmanx, framebuffer, x11, v4l2, osx (#103)

* dispmanx

* typi

* Framebuffer

* fix attempt

* x11

* osx

* V4L2
This commit is contained in:
brindosch
2016-07-12 00:53:48 +02:00
committed by GitHub
parent c1db42c8c4
commit 76acff8043
9 changed files with 46 additions and 44 deletions

View File

@@ -11,6 +11,7 @@
#include <utils/Image.h>
#include <utils/ColorRgba.h>
#include <utils/VideoMode.h>
#include <utils/Logger.h>
///
/// The DispmanxFrameGrabber is used for creating snapshots of the display (screenshots) with a
@@ -84,4 +85,6 @@ private:
// size of the capture buffer in Pixels
unsigned _captureBufferSize;
Logger * _log;
};

View File

@@ -5,6 +5,7 @@
#include <utils/ColorRgb.h>
#include <utils/VideoMode.h>
#include <utils/ImageResampler.h>
#include <utils/Logger.h>
///
/// The FramebufferFrameGrabber is used for creating snapshots of the display (screenshots)
@@ -56,4 +57,6 @@ private:
/// Image resampler for downscaling the image
ImageResampler * _imgResampler;
Logger * _log;
};

View File

@@ -8,6 +8,7 @@
#include <utils/ColorRgb.h>
#include <utils/VideoMode.h>
#include <utils/ImageResampler.h>
#include <utils/Logger.h>
///
/// The OsxFrameGrabber is used for creating snapshots of the display (screenshots)
@@ -56,4 +57,6 @@ private:
/// Image resampler for downscaling the image
ImageResampler * _imgResampler;
Logger * _log;
};

View File

@@ -14,6 +14,7 @@
#include <utils/PixelFormat.h>
#include <utils/VideoMode.h>
#include <utils/ImageResampler.h>
#include <utils/Logger.h>
// grabber includes
#include <grabber/VideoStandard.h>
@@ -122,4 +123,6 @@ private:
QSocketNotifier * _streamNotifier;
ImageResampler _imageResampler;
Logger * _log;
};