mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Fixed a timeout in cDvbDevice while tuning after the frontend has been reopened
This commit is contained in:
parent
b3ad9ec699
commit
8aec1974bb
1
HISTORY
1
HISTORY
@ -9945,3 +9945,4 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed a crash in strreplace() for multiple replacements with strings of different
|
- Fixed a crash in strreplace() for multiple replacements with strings of different
|
||||||
lengths (reported by Markus Ehrnsperger).
|
lengths (reported by Markus Ehrnsperger).
|
||||||
- Fixed handling of cSkinDisplayMenu::GetTextAreaFont() (reported by Matthias Senzel).
|
- Fixed handling of cSkinDisplayMenu::GetTextAreaFont() (reported by Matthias Senzel).
|
||||||
|
- Fixed a timeout in cDvbDevice while tuning after the frontend has been reopened.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: dvbdevice.c 5.5 2024/07/08 18:39:18 kls Exp $
|
* $Id: dvbdevice.c 5.6 2024/07/13 12:34:42 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "dvbdevice.h"
|
#include "dvbdevice.h"
|
||||||
@ -1796,6 +1796,8 @@ void cDvbTuner::SetPowerSaveMode(bool On)
|
|||||||
if (fd_frontend == -1) {
|
if (fd_frontend == -1) {
|
||||||
dsyslog("opening frontend %d/%d", adapter, frontend);
|
dsyslog("opening frontend %d/%d", adapter, frontend);
|
||||||
fd_frontend = dvbFrontend->Open();
|
fd_frontend = dvbFrontend->Open();
|
||||||
|
lastDiseqc = NULL;
|
||||||
|
lastSource = 0;
|
||||||
lastUncValue = 0;
|
lastUncValue = 0;
|
||||||
lastUncDelta = 0;
|
lastUncDelta = 0;
|
||||||
lastUncChange = 0;
|
lastUncChange = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user