mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Added the lines from 'Fixed a timeout in cDvbDevice while tuning after the frontend has been reopened' to cDvbTuner::ProvidesFrontend()
This commit is contained in:
parent
d919817c35
commit
2543f2c486
@ -2576,6 +2576,8 @@ Markus Ehrnsperger <markus.ehrnsperger@googlemail.com>
|
|||||||
for suggesting to add 'lnbPowerTurnedOn = false' to cDvbTuner::ProvidesFrontend()
|
for suggesting to add 'lnbPowerTurnedOn = false' to cDvbTuner::ProvidesFrontend()
|
||||||
for reporting a crash in strreplace() for multiple replacements with strings of
|
for reporting a crash in strreplace() for multiple replacements with strings of
|
||||||
different lengths
|
different lengths
|
||||||
|
for suggesting to add the lines from 'Fixed a timeout in cDvbDevice while tuning after
|
||||||
|
the frontend has been reopened' to cDvbTuner::ProvidesFrontend()
|
||||||
|
|
||||||
Werner Färber <w.faerber@gmx.de>
|
Werner Färber <w.faerber@gmx.de>
|
||||||
for reporting a bug in handling the cPluginManager::Active() result when pressing
|
for reporting a bug in handling the cPluginManager::Active() result when pressing
|
||||||
|
4
HISTORY
4
HISTORY
@ -9940,7 +9940,7 @@ Video Disk Recorder Revision History
|
|||||||
- Added 'lnbPowerTurnedOn = false' to cDvbTuner::ProvidesFrontend() (suggested by
|
- Added 'lnbPowerTurnedOn = false' to cDvbTuner::ProvidesFrontend() (suggested by
|
||||||
Markus Ehrnsperger).
|
Markus Ehrnsperger).
|
||||||
|
|
||||||
2024-07-13:
|
2024-07-14:
|
||||||
|
|
||||||
- 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).
|
||||||
@ -9949,3 +9949,5 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed setting the editable width in the LCARS skin (reported by Matthias Senzel).
|
- Fixed setting the editable width in the LCARS skin (reported by Matthias Senzel).
|
||||||
- Fixed restarting the EPG scan and keeping the frequency of calls to
|
- Fixed restarting the EPG scan and keeping the frequency of calls to
|
||||||
Device->SetPowerSaveIfUnused() low.
|
Device->SetPowerSaveIfUnused() low.
|
||||||
|
- Added the lines from 'Fixed a timeout in cDvbDevice while tuning after the frontend
|
||||||
|
has been reopened' to cDvbTuner::ProvidesFrontend() (suggested by Markus Ehrnsperger).
|
||||||
|
@ -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.6 2024/07/13 12:34:42 kls Exp $
|
* $Id: dvbdevice.c 5.7 2024/07/14 15:41:01 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "dvbdevice.h"
|
#include "dvbdevice.h"
|
||||||
@ -549,9 +549,9 @@ private:
|
|||||||
mutable uint32_t lastUncDelta;
|
mutable uint32_t lastUncDelta;
|
||||||
mutable time_t lastUncChange;
|
mutable time_t lastUncChange;
|
||||||
cChannel channel;
|
cChannel channel;
|
||||||
const cDiseqc *lastDiseqc;
|
mutable const cDiseqc *lastDiseqc;
|
||||||
int diseqcOffset;
|
int diseqcOffset;
|
||||||
int lastSource;
|
mutable int lastSource;
|
||||||
cPositioner *positioner;
|
cPositioner *positioner;
|
||||||
const cScr *scr;
|
const cScr *scr;
|
||||||
mutable bool lnbPowerTurnedOn;
|
mutable bool lnbPowerTurnedOn;
|
||||||
@ -697,6 +697,8 @@ bool cDvbTuner::ProvidesFrontend(const cChannel *Channel, bool Activate) const
|
|||||||
fd_frontend = dvbFrontend->Open();
|
fd_frontend = dvbFrontend->Open();
|
||||||
frontend = i;
|
frontend = i;
|
||||||
dsyslog("using frontend %d/%d", adapter, frontend);
|
dsyslog("using frontend %d/%d", adapter, frontend);
|
||||||
|
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