mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-04-07 17:05:37 +00:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user