mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Moved setting available tracks to cDevice
This commit is contained in:
parent
5274b4c8b3
commit
b62328b8ae
2
HISTORY
2
HISTORY
@ -3160,7 +3160,7 @@ Video Disk Recorder Revision History
|
|||||||
right day of week for timers in the future.
|
right day of week for timers in the future.
|
||||||
- Some improvements to cPoller (thanks to Marco Schlüßler).
|
- Some improvements to cPoller (thanks to Marco Schlüßler).
|
||||||
|
|
||||||
2005-01-02: Version 1.3.18
|
2005-01-04: Version 1.3.18
|
||||||
|
|
||||||
- Removed an unused variable from cTimer::GetWDayFromMDay() (thanks to Wayne Keer
|
- Removed an unused variable from cTimer::GetWDayFromMDay() (thanks to Wayne Keer
|
||||||
for reporting this one).
|
for reporting this one).
|
||||||
|
10
device.c
10
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 1.65 2005/01/02 14:08:40 kls Exp $
|
* $Id: device.c 1.66 2005/01/04 13:13:24 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "device.h"
|
#include "device.h"
|
||||||
@ -540,8 +540,14 @@ eSetChannelResult cDevice::SetChannel(const cChannel *Channel, bool LiveView)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Result == scrOk) {
|
if (Result == scrOk) {
|
||||||
if (LiveView && IsPrimaryDevice())
|
if (LiveView && IsPrimaryDevice()) {
|
||||||
|
ClrAvailableTracks();
|
||||||
|
for (int i = 0; i < MAXAPIDS; i++) {
|
||||||
|
SetAvailableTrack(ttAudio, i, Channel->Apid(i), Channel->Alang(i));
|
||||||
|
SetAvailableTrack(ttDolby, i, Channel->Dpid(i), Channel->Dlang(i));
|
||||||
|
}
|
||||||
currentChannel = Channel->Number();
|
currentChannel = Channel->Number();
|
||||||
|
}
|
||||||
cStatus::MsgChannelSwitch(this, Channel->Number()); // only report status if channel switch successfull
|
cStatus::MsgChannelSwitch(this, Channel->Number()); // only report status if channel switch successfull
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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.108 2005/01/02 11:51:18 kls Exp $
|
* $Id: dvbdevice.c 1.109 2005/01/04 13:13:32 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "dvbdevice.h"
|
#include "dvbdevice.h"
|
||||||
@ -801,12 +801,6 @@ bool cDvbDevice::SetChannelDevice(const cChannel *Channel, bool LiveView)
|
|||||||
// PID settings:
|
// PID settings:
|
||||||
|
|
||||||
if (TurnOnLivePIDs) {
|
if (TurnOnLivePIDs) {
|
||||||
ClrAvailableTracks();
|
|
||||||
for (int i = 0; i < MAXAPIDS; i++) {
|
|
||||||
//XXX do this in cDevice???
|
|
||||||
SetAvailableTrack(ttAudio, i, Channel->Apid(i), Channel->Alang(i));
|
|
||||||
SetAvailableTrack(ttDolby, i, Channel->Dpid(i), Channel->Dlang(i));
|
|
||||||
}
|
|
||||||
if (!(AddPid(Channel->Ppid(), ptPcr) && AddPid(Channel->Vpid(), ptVideo) && AddPid(Channel->Apid(0), ptAudio))) {//XXX+ dolby dpid1!!! (if audio plugins are attached)
|
if (!(AddPid(Channel->Ppid(), ptPcr) && AddPid(Channel->Vpid(), ptVideo) && AddPid(Channel->Apid(0), ptAudio))) {//XXX+ dolby dpid1!!! (if audio plugins are attached)
|
||||||
esyslog("ERROR: failed to set PIDs for channel %d on device %d", Channel->Number(), CardIndex() + 1);
|
esyslog("ERROR: failed to set PIDs for channel %d on device %d", Channel->Number(), CardIndex() + 1);
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user