mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 19:16:51 +02:00
Fix bug: grab image negative quality isn't 100.
This commit is contained in:
parent
3022920b40
commit
833112eaa9
@ -1,6 +1,7 @@
|
|||||||
User johns
|
User johns
|
||||||
Date:
|
Date:
|
||||||
|
|
||||||
|
Fix bug: grab image negative quality isn't the default 100.
|
||||||
Support AMD VDPAU with surface size != requested size.
|
Support AMD VDPAU with surface size != requested size.
|
||||||
Add cache for auto-crop buffer.
|
Add cache for auto-crop buffer.
|
||||||
Fix opengl and opengl threads bugs.
|
Fix opengl and opengl threads bugs.
|
||||||
|
@ -2512,6 +2512,9 @@ uchar *cSoftHdDevice::GrabImage(int &size, bool jpeg, int quality, int width,
|
|||||||
if (SuspendMode != NOT_SUSPENDED) {
|
if (SuspendMode != NOT_SUSPENDED) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
if (quality < 0) { // caller should care, but fix it
|
||||||
|
quality = 95;
|
||||||
|
}
|
||||||
|
|
||||||
return::GrabImage(&size, jpeg, quality, width, height);
|
return::GrabImage(&size, jpeg, quality, width, height);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user