Shorter FEC status message.

This commit is contained in:
Andreas Öman 2008-04-22 20:32:18 +00:00
parent c942080a20
commit 9862270a25

View file

@ -298,9 +298,9 @@ dvb_mux_status(th_dvb_mux_instance_t *tdmi)
vv /= TDMI_FEC_ERR_HISTOGRAM_SIZE;
if(v == TDMI_FEC_ERR_HISTOGRAM_SIZE)
txt = "Constant high FEC rate";
txt = "Constant FEC";
else if(v > 0)
txt = "Bursty FEC rate";
txt = "Bursty FEC";
return txt;
}