summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-05-22 15:36:09 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-05-22 15:36:09 +0200
commit927a54403de609537ef23c3ac8f5c646591b6471 (patch)
tree4d4b845e1860856d058f1d951a65c92b2692f32b
parentb239e8e2baa8334180eecfc07e1a83ee255fb1b2 (diff)
downloadvdr-927a54403de609537ef23c3ac8f5c646591b6471.tar.gz
vdr-927a54403de609537ef23c3ac8f5c646591b6471.tar.bz2
Fixed freezing picture when a recording starts on a system that always uses 'Transfer Mode'
-rw-r--r--CONTRIBUTORS4
-rw-r--r--HISTORY2
-rw-r--r--dvbdevice.c4
3 files changed, 8 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 897b66a6..3554620f 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -983,3 +983,7 @@ Prakash K. Cheemplavam <PrakashKC@gmx.de>
Miko Wohlgemuth <weak@chello.at>
for reporting a problem with the OSD alignment in the SPU decoder
+
+Michal Dobrzynski <michal_dobrzynski@mac.com>
+ for reporting a freezing picture when a recording starts on a system that always
+ uses 'Transfer Mode'
diff --git a/HISTORY b/HISTORY
index 4b879945..f2457386 100644
--- a/HISTORY
+++ b/HISTORY
@@ -2823,3 +2823,5 @@ Video Disk Recorder Revision History
is "fully transparent" (suggested by Sascha Volkenandt).
- Fixed the OSD alignment in the SPU decoder (thanks to Miko Wohlgemuth for reporting
this one and helping to test the fix).
+- Fixed freezing picture when a recording starts on a system that always uses
+ 'Transfer Mode' (thanks to Michal Dobrzynski for reporting this one).
diff --git a/dvbdevice.c b/dvbdevice.c
index afeb9731..9d659e6b 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.c 1.84 2004/05/01 13:15:46 kls Exp $
+ * $Id: dvbdevice.c 1.85 2004/05/22 15:11:48 kls Exp $
*/
#include "dvbdevice.h"
@@ -679,7 +679,7 @@ bool cDvbDevice::ProvidesChannel(const cChannel *Channel, int Priority, bool *Ne
if (ProvidesSource(Channel->Source()) && ProvidesCa(Channel)) {
result = hasPriority;
- if (Priority >= 0 && Receiving()) {
+ if (Priority >= 0 && Receiving(true)) {
if (dvbTuner->IsTunedTo(Channel)) {
if (!HasPid(Channel->Vpid())) {
#ifdef DO_MULTIPLE_RECORDINGS