Transmit: remove multiplication of pckt with m-bit

This is no longer needed since PBUF doesn't rely only on presence of m-bit.
This commit is contained in:
Martin Pulec
2014-02-18 14:24:25 +01:00
parent 84240e6744
commit 57007d308e

View File

@@ -605,14 +605,6 @@ tx_send_base(struct tx *tx, struct tile *tile, struct rtp *rtp_session,
rtp_send_data_hdr(rtp_session, ts, pt, m, 0, 0,
rtp_hdr, rtp_hdr_len,
data, data_len, 0, 0, 0);
if(m && tx->fec_scheme != FEC_NONE) {
int i;
for(i = 0; i < 5; ++i) {
rtp_send_data_hdr(rtp_session, ts, pt, m, 0, 0,
rtp_hdr, rtp_hdr_len,
data, data_len, 0, 0, 0);
}
}
}
if(tx->fec_scheme == FEC_MULT) {