Merge remote-tracking branch 'origin/grabberDiscovery' into mediafoundation

This commit is contained in:
Paulchen Panther
2021-04-04 12:43:29 +02:00
committed by LordGrey
187 changed files with 3716 additions and 15430 deletions

View File

@@ -3,7 +3,6 @@
// qt incl
#include <QDir>
#include <QFileInfo>
#include <QDebug>
// hyperion include
#include <hyperion/Hyperion.h>

View File

@@ -3,8 +3,8 @@
#include <utils/Logger.h>
ImageResampler::ImageResampler()
: _horizontalDecimation(1)
, _verticalDecimation(1)
: _horizontalDecimation(8)
, _verticalDecimation(8)
, _cropLeft(0)
, _cropRight(0)
, _cropTop(0)
@@ -27,7 +27,7 @@ void ImageResampler::processImage(const uint8_t * data, int width, int height, i
int cropRight = _cropRight;
int cropBottom = _cropBottom;
int xDestFlip = 0, yDestFlip = 0;
int uOffset, vOffset;
int uOffset = 0, vOffset = 0;
// handle 3D mode
switch (_videoMode)