mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	Fixed detecting transfer mode on full featured DVB cards
This commit is contained in:
		| @@ -225,6 +225,8 @@ Stefan Huelswitt <huels@iname.com> | ||||
|  cStatus::MsgSetVolume() bug to react properly | ||||
|  for improving the 'i18n' target in the Makefile to avoid unnecessary work | ||||
|  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> | ||||
|  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 | ||||
|   version 1.7.29. | ||||
| - 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 | ||||
|  * 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" | ||||
| @@ -1195,7 +1195,7 @@ bool cDevice::Replaying(void) const | ||||
|  | ||||
| bool cDevice::Transferring(void) const | ||||
| { | ||||
|   return ActualDevice() != PrimaryDevice(); | ||||
|   return cTransferControl::ReceiverDevice() != NULL; | ||||
| } | ||||
|  | ||||
| bool cDevice::AttachPlayer(cPlayer *Player) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user