123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * Copyright (c) 2020 Filip Klembara (in2core)
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at https://mozilla.org/MPL/2.0/.
- */
- #ifndef RTC_RTCP_SENDER_REPORTABLE_H
- #define RTC_RTCP_SENDER_REPORTABLE_H
- #if RTC_ENABLE_MEDIA
- #include "mediahandlerelement.hpp"
- #include "message.hpp"
- #include "rtppacketizationconfig.hpp"
- namespace rtc {
- class RTC_CPP_EXPORT RtcpSrReporter final : public MediaHandlerElement {
- void addToReport(RtpHeader *rtp, uint32_t rtpSize);
- message_ptr getSenderReport(uint32_t timestamp);
- public:
- /// RTP configuration
- const shared_ptr<RtpPacketizationConfig> rtpConfig;
- RtcpSrReporter(shared_ptr<RtpPacketizationConfig> rtpConfig);
- ChainedOutgoingProduct processOutgoingBinaryMessage(ChainedMessagesProduct messages,
- message_ptr control) override;
- uint32_t lastReportedTimestamp() const;
- void setNeedsToReport();
- // deprecated, do not call
- [[deprecated]] void startRecording();
- [[deprecated]] uint32_t previousReportedTimestamp() const { return lastReportedTimestamp(); }
- private:
- uint32_t mPacketCount = 0;
- uint32_t mPayloadOctets = 0;
- uint32_t mLastReportedTimestamp = 0;
- bool mNeedsToReport = false;
- };
- } // namespace rtc
- #endif /* RTC_ENABLE_MEDIA */
- #endif /* RTC_RTCP_SENDER_REPORTABLE_H */
|