Opened 20 years ago
Closed 19 years ago
#991 closed enhancement (invalid)
DPMS should wake up when media is inserted.
Reported by: | Owned by: | skamithi | |
---|---|---|---|
Priority: | minor | Milestone: | unknown |
Component: | mythtv | Version: | |
Severity: | medium | Keywords: | |
Cc: | Ticket locked: | no |
Description (last modified by )
customEvent does not call gContext->ResetScreensaver() for media insert events like it does for LIRC and joystick events; thus a user might insert a dvd, and hear the THX test track before realizing their monitor is still suspended. I've tested and confirmed this behavior. One-line fix.
Attachments (2)
Change History (12)
by , 20 years ago
Attachment: | myth-wake-on-media.patch added |
---|
comment:1 by , 20 years ago
comment:2 by , 20 years ago
That approach didn't work. There is apparently some very asynchronous event handling happening.
This patch injects a wakeup event right before a copy of the event being processed, then returns without processing the event that triggered the processing. This effectively wakes up the monitor automatically when media is inserted.
A less naive patch might check to see that automatic media actions are enabled.
comment:3 by , 20 years ago
The bug with DoResetScreensaver was just a missing XSync() in screensaver-x11.cpp. Disregard the last inelegant patch; simpler (and effective) patch forthcoming.
Thanks to Chutt for the tip.
comment:4 by , 20 years ago
The XSync call has to go in code that is modified by my patch in #982. These changes will be incorporated in the next patch posted there.
comment:6 by , 20 years ago
Owner: | changed from | to
---|
comment:7 by , 19 years ago
hello kcodyr. this patch doesn't work for me. can you revise it to work with the latest svn revision.
comment:8 by , 19 years ago
Type: | patch → enhancement |
---|
comment:9 by , 19 years ago
Milestone: | 0.20 → unknown |
---|---|
Version: | head |
comment:10 by , 19 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
no response from patch provider. patch doesn't work with latest revision. closing the ticket.
FIRST PATCH IS BROKEN.
The wakeup event gets processed after xine exits. Not good enough.
Two approaches: directly call DoResetScreensaver, or drop the processing event, and insert both the wakeup event and a copy of the event being dropped. I'm going with the simpler approach for now.