| Index: webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| diff --git a/webrtc/modules/audio_coding/neteq/neteq_impl.h b/webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| index 863bfbbec338f5115c722923f449aecb1dbcca39..f5622c26bf443e4b77a2ddba43b2096b7bc4bcca 100644
|
| --- a/webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| +++ b/webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| @@ -139,7 +139,7 @@ class NetEqImpl : public webrtc::NetEq {
|
|
|
| int SetTargetDelay() override;
|
|
|
| - int TargetDelay() override;
|
| + int TargetDelayMs() override;
|
|
|
| int CurrentDelayMs() const override;
|
|
|
| @@ -207,6 +207,10 @@ class NetEqImpl : public webrtc::NetEq {
|
|
|
| std::vector<uint16_t> GetNackList(int64_t round_trip_time_ms) const override;
|
|
|
| + std::vector<uint32_t> LastDecodedTimestamps() const override;
|
| +
|
| + size_t SyncBufferSizeMs() const override;
|
| +
|
| // This accessor method is only intended for testing purposes.
|
| const SyncBuffer* sync_buffer_for_test() const;
|
| Operations last_operation_for_test() const;
|
| @@ -414,6 +418,7 @@ class NetEqImpl : public webrtc::NetEq {
|
| AudioFrame::kVadPassive;
|
| std::unique_ptr<TickTimer::Stopwatch> generated_noise_stopwatch_
|
| GUARDED_BY(crit_sect_);
|
| + std::vector<uint32_t> last_decoded_timestamps_ GUARDED_BY(crit_sect_);
|
|
|
| private:
|
| RTC_DISALLOW_COPY_AND_ASSIGN(NetEqImpl);
|
|
|