You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (region.width<limitation.scaleDownLimitWidth||region.height<limitation.scaleDownLimitHeight) {
WARN("scaledown is limited to %dx%d while %dx%d has been chosen - there's a chance this will crash!", limitation.scaleDownLimitWidth, limitation.scaleDownLimitHeight, region.width, region.height);
}
if (DILE_VT_SetVideoFrameOutputDeviceOutputRegion(vth, dump_location, ®ion) !=0) {
[General] Some (newer?) TVs: Checking the power state via luna://com.webos.service.tvpower/power/getPowerState and evaluating "state" for "Active"/"processing" and pausing capturing due to that criteria, to detect power state, causes flickering each 2 minutes.
chrischan — 02/28/2022
This shows up randomly and leads to hyperion-webos switch off/on:
{ "returnValue": true, "state": "Active", "processing": "Request Screen Saver" }
{ "returnValue": true, "state": "Active", "processing": "Screen On" }
{ "returnValue": true, "state": "Active" }
I have a C7 device and when the TV goes into screensaver the screen grabber does not work afterwards.
Stopping and restarting the service is not working and a full tv reboot is needed.
[DILE_VT] TVs of C9 series: If
DILE_VT_Create
function is called first, initialization ofDILE_VT
will fail most of the cases.Solution: Call
DILE_VT_CreateEx
beforeDILE_VT_Create
hyperion-webos/src/backends/libdile_vt.c
Lines 35 to 40 in 82234d9
(Reported via Discord)
Test branch that implements this workaround: https://github.com/webosbrew/hyperion-webos/tree/try/c9_createex_first
[DILE_VT] 4k content on some webOS 4.3.0 devices will be cropped to 1/4 of the picture when captured from
VT
.Solution: Use (not-named) value
2
to pass asdump_location
toDILE_VT_SetVideoFrameOutputDeviceDumpLocation
hyperion-webos/src/backends/libdile_vt.c
Lines 64 to 86 in 82234d9
Reference: #45 (comment)
[General] Some (newer?) TVs: Checking the power state via
luna://com.webos.service.tvpower/power/getPowerState
and evaluating"state"
for"Active"/"processing"
and pausing capturing due to that criteria, to detect power state, causes flickering each 2 minutes.Reference:
hyperion-webos/src/service.c
Lines 342 to 354 in 82234d9
Issue #54
(Reported via Discord)
The text was updated successfully, but these errors were encountered: