- audio decoding chain improving

This commit is contained in:
2026-07-22 17:28:37 +03:00
parent d22b8fe1ab
commit 23a28c293b
5 changed files with 186 additions and 14 deletions
+35
View File
@@ -571,6 +571,41 @@ size_t OpusCodec::plc(int lostPackets, std::span<uint8_t> output)
return total; return total;
} }
size_t OpusCodec::fec(std::span<const uint8_t> nextPacket, std::span<uint8_t> output)
{
// Reconstruct the frame lost right before nextPacket from its LBRR data.
// Needs an initialized decoder; the very first gap of a call (no packet
// decoded yet) has none, so we bail and let the caller do silence/PLC.
if (nextPacket.empty() || !mDecoderCtx || output.empty())
return 0;
// opus_decode(..., decode_fec=1) emits its audio at the decoder's channel
// count. Only the matched-channel case is handled here; on a mismatch we
// return 0 so decodeGapTo() falls back to plc() (which does convert).
if (mDecoderChannels != channels())
return 0;
// The recovered frame is assumed to have the negotiated ptime - the same
// assumption plc() makes. frame_size is samples-per-channel.
int samples_per_channel = mPTime * mSamplerate / 1000;
if (samples_per_channel <= 0)
return 0;
size_t needed = (size_t)samples_per_channel * sizeof(opus_int16) * channels();
if (needed > output.size_bytes())
return 0;
// decode_fec = 1: pull the redundant copy of the previous frame. If nextPacket
// carries no LBRR for it, Opus falls back to its own concealment internally,
// so the result is never worse than plc().
int decoded = opus_decode(mDecoderCtx, nextPacket.data(), nextPacket.size_bytes(),
(opus_int16*)output.data(), samples_per_channel, 1);
if (decoded <= 0)
return 0;
return (size_t)decoded * sizeof(opus_int16) * channels();
}
size_t OpusCodec::getNumberOfSamples(std::span<const uint8_t> payload) size_t OpusCodec::getNumberOfSamples(std::span<const uint8_t> payload)
{ {
int r = opus_packet_get_nb_samples(payload.data(), payload.size(), mSamplerate); int r = opus_packet_get_nb_samples(payload.data(), payload.size(), mSamplerate);
+1
View File
@@ -113,6 +113,7 @@ public:
EncodeResult encode(std::span<const uint8_t> input, std::span<uint8_t> output) override; EncodeResult encode(std::span<const uint8_t> input, std::span<uint8_t> output) override;
DecodeResult decode(std::span<const uint8_t> input, std::span<uint8_t> output) override; DecodeResult decode(std::span<const uint8_t> input, std::span<uint8_t> output) override;
size_t plc(int lostFrames, std::span<uint8_t> output) override; size_t plc(int lostFrames, std::span<uint8_t> output) override;
size_t fec(std::span<const uint8_t> nextPacket, std::span<uint8_t> output) override;
size_t getNumberOfSamples(std::span<const uint8_t> payload); size_t getNumberOfSamples(std::span<const uint8_t> payload);
}; };
+122 -14
View File
@@ -348,6 +348,21 @@ std::chrono::milliseconds RtpBuffer::findTimelength()
return r; return r;
} }
std::shared_ptr<RtpBuffer::Packet> RtpBuffer::peekFront() const
{
Lock l(mGuard);
return mPacketList.empty() ? std::shared_ptr<Packet>() : mPacketList.front();
}
std::chrono::milliseconds RtpBuffer::bufferedTime() const
{
Lock l(mGuard);
std::chrono::milliseconds r = 0ms;
for (const auto& p: mPacketList)
r += p->timelength();
return r;
}
int RtpBuffer::getNumberOfReturnedPackets() const int RtpBuffer::getNumberOfReturnedPackets() const
{ {
return mReturnedCounter; return mReturnedCounter;
@@ -378,14 +393,23 @@ AudioReceiver::AudioReceiver(const CodecList::Settings& settings, MT::Statistics
mDtmfBuffer.setLow(0ms); mDtmfBuffer.setLow(0ms);
mDtmfBuffer.setHigh(1ms); mDtmfBuffer.setHigh(1ms);
// Avoid collecting too much data // Jitter-buffer target delay. Diagnostics on bursty networks showed the buffer level
mRtpBuffer.setHigh(240ms); // swinging ~140ms peak-to-trough and hitting BOTH rails within one call - starving
// (underrun -> silence) and overflowing (trim -> drop) - with real packet loss near 1%.
// Widened the window to give burst jitter more room: prebuffer/low-water raised so a
// late clump arrives before starvation, and the high-water raised so the extra depth
// is not immediately trimmed back off.
mRtpBuffer.setHigh(360ms);
// Keep a non-zero low-water cushion. With low-water at 0 the buffer drains all the way to // Prebuffer: initial fill before the first packet is released (also the depth we aim to
// empty before reacting, so ordinary clock drift / jitter periodically starves the decoder // hold). Was the RTP_BUFFER_PREBUFFER default (100ms); set explicitly alongside low-water.
// and forces silence/PLC insertion (heard as periodic artifacts, uncounted by rtp_lost / mRtpBuffer.setPrebuffer(120ms);
// rtp_dropped). Holding ~60ms lets a late packet arrive before the buffer underruns.
mRtpBuffer.setLow(60ms); // Low-water cushion. With low-water at 0 the buffer drains to empty before reacting, so
// ordinary clock drift / jitter periodically starves the decoder and forces silence/PLC
// insertion (heard as periodic artifacts, uncounted by rtp_lost / rtp_dropped). Holding
// ~120ms lets a late packet clump arrive before the buffer underruns.
mRtpBuffer.setLow(120ms);
// Resamplers are lazy inside; there is no actual memory allocation // Resamplers are lazy inside; there is no actual memory allocation
mResampler8.start(AUDIO_CHANNELS, 8000, AUDIO_SAMPLERATE); mResampler8.start(AUDIO_CHANNELS, 8000, AUDIO_SAMPLERATE);
@@ -620,21 +644,60 @@ AudioReceiver::DecodeResult AudioReceiver::decodeGapTo(Audio::DataWindow& output
else else
if (mCodec && mFrameCount && !mCodecSettings.mSkipDecode) if (mCodec && mFrameCount && !mCodecSettings.mSkipDecode)
{ {
// Do PLC to mDecodedFrame/mDecodedLength // Conceal the gap into mDecodedFrame/mDecodedLength.
if (options.mSkipDecode) if (options.mSkipDecode)
mDecodedLength = 0; mDecodedLength = 0;
else else
{ {
mDecodedLength = mCodec->plc(mFrameCount, {(uint8_t*)mDecodedFrame.data(), mDecodedFrame.size() * sizeof(int16_t)}); std::span<uint8_t> concealBuffer{(uint8_t*)mDecodedFrame.data(), mDecodedFrame.size() * sizeof(int16_t)};
mDecodedLength = 0;
// In-band FEC first: the packet sitting past the gap (still at the front
// of the jitter buffer - fetch() leaves it there on a Gap) may carry a
// redundant copy of the frame we just lost. Recover it exactly instead of
// synthesising it. Only attempt this when that packet decodes with the
// very same codec instance we have been using.
if (auto next = mRtpBuffer.peekFront(); next && next->rtp())
{
auto codecIter = mCodecMap.find(next->rtp()->GetPayloadType());
if (codecIter != mCodecMap.end() && codecIter->second == mCodec)
{
mDecodedLength = mCodec->fec({next->rtp()->GetPayloadData(), (size_t)next->rtp()->GetPayloadLength()},
concealBuffer);
}
}
// No FEC available (unsupported codec, no redundant data, or no next
// packet yet): fall back to the codec's own concealment.
if (!mDecodedLength)
mDecodedLength = mCodec->plc(mFrameCount, concealBuffer);
if (!mDecodedLength) if (!mDecodedLength)
{ {
// PLC is not support or failed // PLC unsupported or failed - substitute one frame of silence.
// So substitute the silence size_t frameBytes = (size_t)mCodec->frameTime() * mCodec->samplerate() / 1000
size_t nr_of_samples = mCodec->frameTime() * mCodec->samplerate() / 1000 * sizeof(short); * sizeof(short) * std::max(1, mCodec->channels());
mDecodedLength = nr_of_samples * sizeof(short); frameBytes = std::min(frameBytes, concealBuffer.size_bytes());
mDecodedLength = frameBytes;
memset(mDecodedFrame.data(), 0, mDecodedLength); memset(mDecodedFrame.data(), 0, mDecodedLength);
} }
} }
// Fix double-concealment: fetch() advanced mLastSeqno across the gap but not
// mLastPacketTimestamp, so without this the next real packet's timestamp-gap
// check in decodePacketTo() would pad the same span again with silence (gap
// concealed twice - once here as FEC/PLC, once there as silence). Advance the
// expected-timestamp cursor past the last real packet and record the audio we
// just produced as the new "last unit", so decodePacketTo() fills only whatever
// gap remains beyond it.
if (mDecodedLength && mLastPacketTimestamp && mCodec)
{
int sr = mCodec->samplerate();
int chans = std::max(1, mCodec->channels());
*mLastPacketTimestamp += (uint32_t)(mLastPacketTimeLength * (sr / 1000));
int concealedSamples = (int)(mDecodedLength / (sizeof(short) * chans));
mLastPacketTimeLength = concealedSamples * 1000 / sr;
}
} }
if (mDecodedLength) if (mDecodedLength)
@@ -807,7 +870,14 @@ AudioReceiver::DecodeResult AudioReceiver::decodeEmptyTo(Audio::DataWindow& outp
// Emit silence if codec information is available - it is to properly handle the gaps // Emit silence if codec information is available - it is to properly handle the gaps
auto avail = output.getTimeLength(fmt); auto avail = output.getTimeLength(fmt);
if (options.mElapsed > avail) if (options.mElapsed > avail)
{
// Genuine decoder starvation: the buffer drained below low-water with no
// packet (and no CNG) to play, so we fill the timeline with silence. Count
// it for the heartbeat - this is the signature of jitter/clock-drift
// underruns that carry no packet-loss.
output.addZero(fmt.sizeFromTime(options.mElapsed - avail)); output.addZero(fmt.sizeFromTime(options.mElapsed - avail));
mUnderrunCount++;
}
} }
} }
@@ -825,6 +895,42 @@ void MT::AudioReceiver::processDtmf()
} }
} }
void MT::AudioReceiver::logReceiveHeartbeat()
{
float t = now_ms();
if (mStatLogLast == 0.0f)
{
// First call - just latch the baselines, nothing to report yet.
mStatLogLast = t;
mStatLossLast = mStat.mPacketLoss;
mStatDropLast = mStat.mPacketDropped;
return;
}
if (t - mStatLogLast < 5000.0f)
return;
// Deltas over the elapsed window. Loss = missing sequence numbers seen on fetch;
// dropped = packets discarded by the high-water trim (late/overflow), which is
// NOT network loss; underruns = decoder starvation (buffer under low-water) that
// forced silence. These three separate the candidate impairment causes.
size_t lossDelta = mStat.mPacketLoss - mStatLossLast;
size_t dropDelta = mStat.mPacketDropped - mStatDropLast;
ICELogInfo(<< "[rx-heartbeat] buffered=" << mRtpBuffer.bufferedTime().count() << "ms"
<< " packets=" << mRtpBuffer.getCount()
<< " underruns/5s=" << mUnderrunCount
<< " gaps/5s=" << mGapCount
<< " loss/5s=" << lossDelta
<< " dropped/5s=" << dropDelta);
mStatLogLast = t;
mUnderrunCount = 0;
mGapCount = 0;
mStatLossLast = mStat.mPacketLoss;
mStatDropLast = mStat.mPacketDropped;
}
void MT::AudioReceiver::updateDecodingTimeStatistics() void MT::AudioReceiver::updateDecodingTimeStatistics()
{ {
if (!mDecodeTimestamp) if (!mDecodeTimestamp)
@@ -887,7 +993,7 @@ AudioReceiver::DecodeResult AudioReceiver::getAudioTo(Audio::DataWindow& output,
// Decode to mAvailable buffer // Decode to mAvailable buffer
switch (fr.mStatus) switch (fr.mStatus)
{ {
case RtpBuffer::FetchResult::Status::Gap: result = decodeGapTo(mAvailable, options.decreaseElapsedBy(produced)); break; case RtpBuffer::FetchResult::Status::Gap: mGapCount++; result = decodeGapTo(mAvailable, options.decreaseElapsedBy(produced)); break;
case RtpBuffer::FetchResult::Status::NoPacket: result = decodeEmptyTo(mAvailable, options.decreaseElapsedBy(produced)); break; case RtpBuffer::FetchResult::Status::NoPacket: result = decodeEmptyTo(mAvailable, options.decreaseElapsedBy(produced)); break;
case RtpBuffer::FetchResult::Status::RegularPacket: result = decodePacketTo(mAvailable, options.decreaseElapsedBy(produced), fr.mPacket); updateDecodeIntervalStatistics(); break; case RtpBuffer::FetchResult::Status::RegularPacket: result = decodePacketTo(mAvailable, options.decreaseElapsedBy(produced), fr.mPacket); updateDecodeIntervalStatistics(); break;
default: default:
@@ -921,6 +1027,8 @@ AudioReceiver::DecodeResult AudioReceiver::getAudioTo(Audio::DataWindow& output,
mProducedAudio += produced; mProducedAudio += produced;
// ICELogDebug(<< "Requested " << options.mElapsed << ", produced " << produced << ", remains " << mAvailable.getTimeLength(fmt) << ", packets " << getRtpBuffer().getCount()); // ICELogDebug(<< "Requested " << options.mElapsed << ", produced " << produced << ", remains " << mAvailable.getTimeLength(fmt) << ", packets " << getRtpBuffer().getCount());
logReceiveHeartbeat();
return result; return result;
} }
+21
View File
@@ -106,6 +106,17 @@ public:
FetchResult fetch(); FetchResult fetch();
// Return the oldest buffered packet without removing it, or nullptr when empty.
// After fetch() reports a Gap the post-gap packet stays at the front, so this
// lets the decoder peek at it (e.g. to pull Opus in-band FEC) before it is
// fetched and decoded normally on the next call.
std::shared_ptr<Packet> peekFront() const;
// Thread-safe snapshot of the currently buffered audio duration. Same value as
// findTimelength() but taken under the buffer lock, safe to call from the audio
// thread while the network thread adds packets (used by the diagnostic heartbeat).
std::chrono::milliseconds bufferedTime() const;
// Drop oldest packets so buffered audio stays within the high-water mark, // Drop oldest packets so buffered audio stays within the high-water mark,
// recording packet-loss events for any sequence gaps crossed (the same // recording packet-loss events for any sequence gaps crossed (the same
// accounting fetch() performs). Used to bound memory on streams that never // accounting fetch() performs). Used to bound memory on streams that never
@@ -327,6 +338,16 @@ protected:
size_t mDecodeCount = 0; size_t mDecodeCount = 0;
void updateDecodeIntervalStatistics(); void updateDecodeIntervalStatistics();
// --- Step 0 diagnostics: periodic receive-path heartbeat ---
// Emits jitter-buffer fill level, starvation (underrun) count, gap/loss/drop
// deltas every ~5 s so we can tell which impairment mechanism dominates a call.
float mStatLogLast = 0.0f; // now_ms() of last heartbeat; 0 = not started
size_t mUnderrunCount = 0; // silence insertions on an empty/starved buffer since last log
size_t mGapCount = 0; // gap (loss) concealment events since last log
size_t mStatLossLast = 0; // mStat.mPacketLoss at last heartbeat
size_t mStatDropLast = 0; // mStat.mPacketDropped at last heartbeat
void logReceiveHeartbeat();
}; };
} }
+7
View File
@@ -88,6 +88,13 @@ public:
// Returns size of produced data (PCM signed short) in bytes // Returns size of produced data (PCM signed short) in bytes
virtual size_t plc(int lostFrames, std::span<uint8_t> output) = 0; virtual size_t plc(int lostFrames, std::span<uint8_t> output) = 0;
// In-band forward error correction. Reconstructs the single frame lost
// immediately before nextPacket, using the redundant (LBRR) copy that
// nextPacket may carry. Returns the number of PCM bytes written to output,
// or 0 when the codec has no in-band FEC or no redundant data was present
// (in which case the caller should fall back to plc()). Default: unsupported.
virtual size_t fec(std::span<const uint8_t> nextPacket, std::span<uint8_t> output) { return 0; }
}; };
} }
#endif #endif