Quoting Patrick Boettcher <patrick.boettcher@xxxxxxx>: > Hi, > > On Mon, 9 May 2005, Stefan Lucke wrote: > > 16 from T:522000000:0:1:0:2:1:2:1 to T:522000000:0:1:0:2:2:2:1 > > > As the data seems just to toggle and this is the only transponder > > where this happens, I don't think changed data is relevant. > > Does some knows a person to conact, in order to get this fixed on > > transmission side ? > > This would be an option, or vdr ignores the field CoderateL if Hierarchy > == 0 (because, afaik, CoderateL is just relevant if Hierarchy is enabled), > as it does for the audio pid change in the recent version. > So as vdr's check is: if (source != Source || frequency != Frequency || bandwidth != Bandwidth || modulation != Modulation || hierarchy != Hierarchy || coderateH != CoderateH || coderateL != CoderateL || guard != Guard || transmission != Transmission) { it should be modified to: if (source != Source || frequency != Frequency || bandwidth != Bandwidth || modulation != Modulation || (Hierarchy && (hierarchy != Hierarchy || coderateL != CoderateL)) || coderateH != CoderateH || guard != Guard || transmission != Transmission) { As I'm not a dvb expert, I've to ask: are there other dependant parameters which have to be checked only on special values of others ? Stefan Lucke