mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed VPS handling when spawning a pattern timer, in case Setup.UseVps is false
This commit is contained in:
parent
eebcc57079
commit
f1836af0b0
@ -3662,6 +3662,8 @@ J
|
|||||||
for adding support for EAC3 audio from other sources
|
for adding support for EAC3 audio from other sources
|
||||||
for reporting a crash if a pattern timer spawns a timer that uses EPISODE and the
|
for reporting a crash if a pattern timer spawns a timer that uses EPISODE and the
|
||||||
event has no short text
|
event has no short text
|
||||||
|
for reporting a bug in VPS handling when spawning a pattern timer, in case Setup.UseVps
|
||||||
|
is false
|
||||||
|
|
||||||
Stefan Verse <Verse@amotronics.de>
|
Stefan Verse <Verse@amotronics.de>
|
||||||
for fixing an occasional black screen when switching channels
|
for fixing an occasional black screen when switching channels
|
||||||
|
4
HISTORY
4
HISTORY
@ -9578,7 +9578,7 @@ Video Disk Recorder Revision History
|
|||||||
given (reported by Manuel Reimer).
|
given (reported by Manuel Reimer).
|
||||||
- Fixed handling $(PKG_CONFIG) in newplugin (thanks to Winfried Köhler).
|
- Fixed handling $(PKG_CONFIG) in newplugin (thanks to Winfried Köhler).
|
||||||
|
|
||||||
2021-01-04:
|
2021-01-07:
|
||||||
|
|
||||||
- Fixed strreplace() to handle NULL strings (reported by Jürgen Schneider).
|
- Fixed strreplace() to handle NULL strings (reported by Jürgen Schneider).
|
||||||
- Somewhere down the road the 'x' bit of Doxyfile.filter got lost, so the
|
- Somewhere down the road the 'x' bit of Doxyfile.filter got lost, so the
|
||||||
@ -9589,3 +9589,5 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed handling $(PKG_CONFIG) in newplugin (thanks to Winfried Köhler).
|
- Fixed handling $(PKG_CONFIG) in newplugin (thanks to Winfried Köhler).
|
||||||
- Fixed initializing the cChannel::schedule pointer after reading EPG data with PUTE
|
- Fixed initializing the cChannel::schedule pointer after reading EPG data with PUTE
|
||||||
(reported by Manuel Reimer).
|
(reported by Manuel Reimer).
|
||||||
|
- Fixed VPS handling when spawning a pattern timer, in case Setup.UseVps is false
|
||||||
|
(reported by Jürgen Schneider).
|
||||||
|
4
timers.c
4
timers.c
@ -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: timers.c 5.1 2020/12/26 15:49:01 kls Exp $
|
* $Id: timers.c 5.2 2021/01/07 16:00:17 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "timers.h"
|
#include "timers.h"
|
||||||
@ -183,7 +183,7 @@ cTimer::cTimer(const cEvent *Event, const char *FileName, const cTimer *PatternT
|
|||||||
remote = NULL;
|
remote = NULL;
|
||||||
event = NULL;
|
event = NULL;
|
||||||
if (!PatternTimer || PatternTimer->HasFlags(tfVps)) {
|
if (!PatternTimer || PatternTimer->HasFlags(tfVps)) {
|
||||||
if (Event->Vps() && Setup.UseVps)
|
if (Event->Vps() && (PatternTimer || Setup.UseVps))
|
||||||
SetFlags(tfVps);
|
SetFlags(tfVps);
|
||||||
}
|
}
|
||||||
LOCK_CHANNELS_READ;
|
LOCK_CHANNELS_READ;
|
||||||
|
Loading…
Reference in New Issue
Block a user