mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed detecting transfer mode on full featured DVB cards
This commit is contained in:
parent
08ab22f987
commit
60d8c61da1
@ -225,6 +225,8 @@ Stefan Huelswitt <huels@iname.com>
|
|||||||
cStatus::MsgSetVolume() bug to react properly
|
cStatus::MsgSetVolume() bug to react properly
|
||||||
for improving the 'i18n' target in the Makefile to avoid unnecessary work
|
for improving the 'i18n' target in the Makefile to avoid unnecessary work
|
||||||
for a patch that was used to implement the --localedir option
|
for a patch that was used to implement the --localedir option
|
||||||
|
for reporting a problem with updating CA descriptors in transfer mode on full
|
||||||
|
featured DVB cards
|
||||||
|
|
||||||
Ulrich Röder <roeder@efr-net.de>
|
Ulrich Röder <roeder@efr-net.de>
|
||||||
for pointing out that there are channels that have a symbol rate higher than 27500
|
for pointing out that there are channels that have a symbol rate higher than 27500
|
||||||
|
2
HISTORY
2
HISTORY
@ -7203,3 +7203,5 @@ Video Disk Recorder Revision History
|
|||||||
no other files. This fixes the leftover ".sort" files that were introduced in
|
no other files. This fixes the leftover ".sort" files that were introduced in
|
||||||
version 1.7.29.
|
version 1.7.29.
|
||||||
- Added IsUpdate() to the EPG handler interface (thanks to Jörg Wendel).
|
- Added IsUpdate() to the EPG handler interface (thanks to Jörg Wendel).
|
||||||
|
- Fixed detecting transfer mode on full featured DVB cards (thanks to Stefan Huelswitt
|
||||||
|
for reporting a problem with updating CA descriptors in such cases).
|
||||||
|
4
device.c
4
device.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: device.c 2.62 2012/06/10 13:13:18 kls Exp $
|
* $Id: device.c 2.63 2012/08/25 11:56:08 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "device.h"
|
#include "device.h"
|
||||||
@ -1195,7 +1195,7 @@ bool cDevice::Replaying(void) const
|
|||||||
|
|
||||||
bool cDevice::Transferring(void) const
|
bool cDevice::Transferring(void) const
|
||||||
{
|
{
|
||||||
return ActualDevice() != PrimaryDevice();
|
return cTransferControl::ReceiverDevice() != NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cDevice::AttachPlayer(cPlayer *Player)
|
bool cDevice::AttachPlayer(cPlayer *Player)
|
||||||
|
Loading…
Reference in New Issue
Block a user