TT#109800 fix output seq num bug

Change-Id: I68bc61982806ba1a48931030fdee26bcd75f1858
mr10.1.1
Richard Fuchs 4 years ago
parent 9987f8209f
commit 45515b6075

@ -2263,7 +2263,7 @@ static void __dtx_send_later(struct codec_timer *ct) {
ilogs(dtx, LOG_DEBUG, "RTP media for TS %lu missing, triggering DTX", ts); ilogs(dtx, LOG_DEBUG, "RTP media for TS %lu missing, triggering DTX", ts);
// synthetic packet // synthetic packet
mp_copy.rtp->seq_num += htons(1); mp_copy.rtp->seq_num = htons(ntohs(mp_copy.rtp->seq_num) + 1);
ret = decoder_dtx(ch->decoder, ts, ptime, ret = decoder_dtx(ch->decoder, ts, ptime,
ch->handler->packet_decoded, ch, &mp_copy); ch->handler->packet_decoded, ch, &mp_copy);

Loading…
Cancel
Save