- Set 'Software Frame Decimation' begin to 0

- Removed grabber specific device name from Log
- Keep pixel format when switching resolution
- Display 'Flip mode' correct in Log
- BGR24 images always flipped
This commit is contained in:
Paulchen Panther
2021-01-29 21:08:47 +01:00
parent bfc818ab45
commit 07a6d5e5b1
6 changed files with 31 additions and 15 deletions

View File

@@ -38,7 +38,7 @@ void Grabber::setVideoMode(VideoMode mode)
void Grabber::setFlipMode(FlipMode mode)
{
Debug(_log,"Set flipmode to %d", mode);
Debug(_log,"Set flipmode to %s", QSTRING_CSTR(flipModeToString(mode)));
_flipMode = mode;
if ( _useImageResampler )
{

View File

@@ -110,9 +110,9 @@
{
"type" : "integer",
"title" : "edt_conf_v4l2_fpsSoftwareDecimation_title",
"minimum" : 1,
"minimum" : 0,
"maximum" : 60,
"default" : 1,
"default" : 0,
"required" : true,
"propertyOrder" : 14
},