mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed handling Priority -1 in cDvbDevice::ProvidesChannel()
This commit is contained in:
parent
8b96cd93b9
commit
8e4a745ada
@ -649,6 +649,7 @@ Torsten Herz <torsten.herz@web.de>
|
|||||||
for reporting a wrong EPG bugfix code number for the MAX_USEFUL_SUBTITLE_LENGTH fix
|
for reporting a wrong EPG bugfix code number for the MAX_USEFUL_SUBTITLE_LENGTH fix
|
||||||
for fixing a bug in resetting OSD color palettes
|
for fixing a bug in resetting OSD color palettes
|
||||||
for adding missing 'const' to some cChannel member functions
|
for adding missing 'const' to some cChannel member functions
|
||||||
|
for fixing handling Priority -1 in cDvbDevice::ProvidesChannel()
|
||||||
|
|
||||||
Steffen Becker <stbecker@rbg.informatik.tu-darmstadt.de>
|
Steffen Becker <stbecker@rbg.informatik.tu-darmstadt.de>
|
||||||
for reporting a problem with CPU load peaks (in the EPG scanner)
|
for reporting a problem with CPU load peaks (in the EPG scanner)
|
||||||
|
5
HISTORY
5
HISTORY
@ -2460,6 +2460,11 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed getting the list of recordings in case VDR is started from a directory
|
- Fixed getting the list of recordings in case VDR is started from a directory
|
||||||
where it doesn't have access to (thanks to Dirk Mueller).
|
where it doesn't have access to (thanks to Dirk Mueller).
|
||||||
|
|
||||||
|
2003-11-09: Version 1.2.6pre6
|
||||||
|
|
||||||
|
- Fixed handling Priority -1 in cDvbDevice::ProvidesChannel() (thanks to
|
||||||
|
Torsten Herz).
|
||||||
|
|
||||||
2003-10-24: Version 1.3.0
|
2003-10-24: Version 1.3.0
|
||||||
|
|
||||||
- Changed thread handling to make it work with NPTL ("Native Posix Thread Library").
|
- Changed thread handling to make it work with NPTL ("Native Posix Thread Library").
|
||||||
|
@ -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 1.71 2003/11/07 14:16:25 kls Exp $
|
* $Id: dvbdevice.c 1.72 2003/11/09 11:19:00 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "dvbdevice.h"
|
#include "dvbdevice.h"
|
||||||
@ -653,7 +653,7 @@ bool cDvbDevice::ProvidesChannel(const cChannel *Channel, int Priority, bool *Ne
|
|||||||
|
|
||||||
if (ProvidesSource(Channel->Source()) && ProvidesCa(Channel->Ca())) {
|
if (ProvidesSource(Channel->Source()) && ProvidesCa(Channel->Ca())) {
|
||||||
result = hasPriority;
|
result = hasPriority;
|
||||||
if (Receiving()) {
|
if (Priority >= 0 && Receiving()) {
|
||||||
if (dvbTuner->IsTunedTo(Channel)) {
|
if (dvbTuner->IsTunedTo(Channel)) {
|
||||||
if (!HasPid(Channel->Vpid())) {
|
if (!HasPid(Channel->Vpid())) {
|
||||||
#ifdef DO_MULTIPLE_RECORDINGS
|
#ifdef DO_MULTIPLE_RECORDINGS
|
||||||
|
Loading…
Reference in New Issue
Block a user