aboutsummaryrefslogtreecommitdiff
path: root/call/rtp_video_sender.h
diff options
context:
space:
mode:
Diffstat (limited to 'call/rtp_video_sender.h')
-rw-r--r--call/rtp_video_sender.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/call/rtp_video_sender.h b/call/rtp_video_sender.h
index 611edc6b27..991276fe79 100644
--- a/call/rtp_video_sender.h
+++ b/call/rtp_video_sender.h
@@ -35,7 +35,6 @@
#include "modules/rtp_rtcp/source/rtp_sender_video.h"
#include "modules/rtp_rtcp/source/rtp_sequence_number_map.h"
#include "modules/rtp_rtcp/source/rtp_video_header.h"
-#include "modules/utility/include/process_thread.h"
#include "rtc_base/constructor_magic.h"
#include "rtc_base/rate_limiter.h"
#include "rtc_base/synchronization/mutex.h"
@@ -90,15 +89,6 @@ class RtpVideoSender : public RtpVideoSenderInterface,
rtc::scoped_refptr<FrameTransformerInterface> frame_transformer);
~RtpVideoSender() override;
- // RegisterProcessThread register |module_process_thread| with those objects
- // that use it. Registration has to happen on the thread were
- // |module_process_thread| was created (libjingle's worker thread).
- // TODO(perkj): Replace the use of |module_process_thread| with a TaskQueue,
- // maybe |worker_queue|.
- void RegisterProcessThread(ProcessThread* module_process_thread)
- RTC_LOCKS_EXCLUDED(mutex_) override;
- void DeRegisterProcessThread() RTC_LOCKS_EXCLUDED(mutex_) override;
-
// RtpVideoSender will only route packets if being active, all packets will be
// dropped otherwise.
void SetActive(bool active) RTC_LOCKS_EXCLUDED(mutex_) override;
@@ -185,8 +175,6 @@ class RtpVideoSender : public RtpVideoSenderInterface,
mutable Mutex mutex_;
bool active_ RTC_GUARDED_BY(mutex_);
- ProcessThread* module_process_thread_;
- SequenceChecker module_process_thread_checker_;
std::map<uint32_t, RtpState> suspended_ssrcs_;
const std::unique_ptr<FecController> fec_controller_;