Browse Source

Update include/rtc/rtcpreceivingsession.hpp

Co-authored-by: Paul-Louis Ageneau <[email protected]>
petersomers 1 month ago
parent
commit
96ac28f27f
1 changed files with 4 additions and 4 deletions
  1. 4 4
      include/rtc/rtcpreceivingsession.hpp

+ 4 - 4
include/rtc/rtcpreceivingsession.hpp

@@ -38,12 +38,12 @@ public:
 	[[deprecated("Use Track::requestKeyframe()")]] inline bool requestKeyframe() { return false; };
 	[[deprecated("Use Track::requestBitrate()")]] inline void requestBitrate(unsigned int) {};
 
-	struct SyncPTS{
-		uint64_t RTPTS;
-		uint64_t NTPTS;
+	struct SyncTimestamps {
+		uint64_t rtpTimestamp;
+		uint64_t ntpTimestamp;
 	};
 
-	SyncPTS getSyncPTS();
+	SyncTimestamps getSyncTimestamps();
 
 protected:
 	void pushREMB(const message_callback &send, unsigned int bitrate);