Browse Source

Cleaned up unused stuff

Paul-Louis Ageneau 5 years ago
parent
commit
4e426d75e0
1 changed files with 1 additions and 3 deletions
  1. 1 3
      include/rtc/rtp.hpp

+ 1 - 3
include/rtc/rtp.hpp

@@ -354,11 +354,9 @@ private:
 	unsigned int requestedBitrate = 0;
 	synchronized_callback<rtc::message_ptr> txCB;
 	SSRC ssrc = 0;
-	uint32_t greatestSeqNo = 0, greatestTS;
+	uint32_t greatestSeqNo = 0;
 	uint64_t syncRTPTS, syncNTPTS;
 
-	unsigned int rotationCount = 0;
-
 public:
 	void onOutgoing(std::function<void(rtc::message_ptr)> cb) override { txCB = cb; }