1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Fixed setting the current subtitle track in Transfer-Mode

This commit is contained in:
Klaus Schmidinger 2008-02-17 16:04:52 +01:00
parent 31a0318de4
commit 0b481b18e2
4 changed files with 14 additions and 5 deletions

View File

@ -1163,6 +1163,8 @@ Reinhard Nissl <rnissl@gmx.de>
to be displayed late in live mode to be displayed late in live mode
for a patch that was used to implement handling of DVB-S2 for a patch that was used to implement handling of DVB-S2
for reporting an invalid access in the section handler when ending VDR for reporting an invalid access in the section handler when ending VDR
for pointing out that cDevice::Transferring() doesn't return the right value in the
early stage of channel switching
Richard Robson <richard_robson@beeb.net> Richard Robson <richard_robson@beeb.net>
for reporting freezing replay if a timer starts while in Transfer Mode from the for reporting freezing replay if a timer starts while in Transfer Mode from the
@ -2207,6 +2209,7 @@ Peter Pinnau <vdr@unterbrecher.de>
Petri Helin <phelin@googlemail.com> Petri Helin <phelin@googlemail.com>
for suggesting to avoid budget DVB cards with Common Interface when tuning to an for suggesting to avoid budget DVB cards with Common Interface when tuning to an
FTA channel FTA channel
for reporting a bug in setting the current subtitle track in Transfer-Mode
Oktay Yolgeçen <oktay_73@yahoo.de> Oktay Yolgeçen <oktay_73@yahoo.de>
for translating OSD texts to the Turkish language for translating OSD texts to the Turkish language

View File

@ -5643,3 +5643,9 @@ Video Disk Recorder Revision History
- Introduced 'operator const void * ()' in cString to catch cases where operator*() - Introduced 'operator const void * ()' in cString to catch cases where operator*()
should be used. should be used.
- Fixed calculating the scrollbar sizes in the skins. - Fixed calculating the scrollbar sizes in the skins.
2008-02-17: Version 1.5.16
- Fixed setting the current subtitle track in Transfer-Mode (reported by Petri Helin,
thanks to Reinhard Nissl for pointing out that cDevice::Transferring() doesn't
return the right value in the early stage of channel switching).

View File

@ -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: config.h 1.305 2008/02/05 15:35:11 kls Exp $ * $Id: config.h 1.306 2008/02/17 16:04:52 kls Exp $
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -22,8 +22,8 @@
// VDR's own version number: // VDR's own version number:
#define VDRVERSION "1.5.15" #define VDRVERSION "1.5.16"
#define VDRVERSNUM 10515 // Version * 10000 + Major * 100 + Minor #define VDRVERSNUM 10516 // Version * 10000 + Major * 100 + Minor
// The plugin API's version number: // The plugin API's version number:

View File

@ -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 1.153 2008/02/16 13:52:11 kls Exp $ * $Id: device.c 1.154 2008/02/17 15:55:06 kls Exp $
*/ */
#include "device.h" #include "device.h"
@ -1159,7 +1159,7 @@ bool cDevice::Replaying(void) const
bool cDevice::Transferring(void) const bool cDevice::Transferring(void) const
{ {
return dynamic_cast<cTransfer *>(player) != NULL; return ActualDevice() != PrimaryDevice();
} }
bool cDevice::AttachPlayer(cPlayer *Player) bool cDevice::AttachPlayer(cPlayer *Player)