Hi list,
To actually make use of the new MsgChannelSwitch behavior of VDR 1.7.25, I've quickly hacked an experimental patch to use this to detach the old receiver before VDR attempts to switch channel. With this, channel switching should not jump between receivers for FF cards, avoiding transfer mode whenever possible. Please test.
Cheers,
Udo
Hello Udo,
Your patch looks like a dirty hack, but it works here. ;-)
But there is a small syntax error at #ifdef
It should be : ---------------------------------- #if VDRVERSNUM >= 10725 // Disconnect receiver if channel is 0, will reconnect to new // receiver after channel change. if (ChannelNumber == 0 && Device->IsPrimaryDevice()) { if(receiver) delete receiver; receiver = NULL; } #endif ----------------------------------
Regards, Andreas