mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Now setting the VPID before the APID in live mode to avoid unnecessary overhead in the firmware
This commit is contained in:
parent
c07a3a371e
commit
edc1440ed8
@ -260,6 +260,8 @@ Werner Fink <werner@suse.de>
|
||||
for changing thread handling to make it work with NPTL ("Native Posix Thread Library")
|
||||
for suggesting to replace usleep() calls with a pthread_cond_timedwait() based wait
|
||||
for suggesting to add more checks and polling when getting frontend events
|
||||
for setting the VPID before the APID in live mode to avoid unnecessary
|
||||
overhead in the firmware
|
||||
|
||||
Rolf Hakenes <hakenes@hippomi.de>
|
||||
for providing 'libdtv' and adapting the EIT mechanisms to it
|
||||
|
2
HISTORY
2
HISTORY
@ -3155,3 +3155,5 @@ Video Disk Recorder Revision History
|
||||
- Fixed some characters in the iso8859-2 font file (thanks to Dino Ravnic).
|
||||
- Fixed some errors in the Croatian language texts (thanks to Dino Ravnic).
|
||||
- Fixed a possible recursion in cControl::Shutdown() (thanks to Sascha Volkenandt).
|
||||
- Now setting the VPID before the APID in live mode to avoid unnecessary
|
||||
overhead in the firmware (thanks to Werner Fink).
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: dvbdevice.c 1.104 2004/11/07 10:27:19 kls Exp $
|
||||
* $Id: dvbdevice.c 1.105 2004/11/20 11:41:37 kls Exp $
|
||||
*/
|
||||
|
||||
#include "dvbdevice.h"
|
||||
@ -800,7 +800,7 @@ bool cDvbDevice::SetChannelDevice(const cChannel *Channel, bool LiveView)
|
||||
if (TurnOnLivePIDs) {
|
||||
aPid1 = Channel->Apid1();
|
||||
aPid2 = Channel->Apid2();
|
||||
if (!(AddPid(Channel->Ppid(), ptPcr) && AddPid(Channel->Apid1(), ptAudio) && AddPid(Channel->Vpid(), ptVideo))) {//XXX+ dolby dpid1!!! (if audio plugins are attached)
|
||||
if (!(AddPid(Channel->Ppid(), ptPcr) && AddPid(Channel->Vpid(), ptVideo) && AddPid(Channel->Apid1(), 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);
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user