12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /**
- * 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_RTP_PACKETIZATION_CONFIG_H
- #define RTC_RTP_PACKETIZATION_CONFIG_H
- #if RTC_ENABLE_MEDIA
- #include "rtp.hpp"
- namespace rtc {
- // RTP configuration used in packetization process
- class RTC_CPP_EXPORT RtpPacketizationConfig {
- public:
- const SSRC ssrc;
- const std::string cname;
- const uint8_t payloadType;
- const uint32_t clockRate;
- const uint8_t videoOrientationId;
- // current sequence number
- uint16_t sequenceNumber;
- // current timestamp
- uint32_t timestamp;
- // start timestamp
- uint32_t startTimestamp;
- /// Current video orientation
- ///
- /// Bit# 7 6 5 4 3 2 1 0
- /// Definition 0 0 0 0 C F R1 R0
- ///
- /// C
- /// 0 - Front-facing camera (use this if unsure)
- /// 1 - Back-facing camera
- ///
- /// F
- /// 0 - No Flip
- /// 1 - Horizontal flip
- ///
- /// R1 R0 - CW rotation that receiver must apply
- /// 0 - 0 degrees
- /// 1 - 90 degrees
- /// 2 - 180 degrees
- /// 3 - 270 degrees
- uint8_t videoOrientation = 0;
- /// Construct RTP configuration used in packetization process
- /// @param ssrc SSRC of source
- /// @param cname CNAME of source
- /// @param payloadType Payload type of source
- /// @param clockRate Clock rate of source used in timestamps
- /// nullopt)
- /// @param videoOrientationId Video orientation (see above)
- RtpPacketizationConfig(SSRC ssrc, std::string cname, uint8_t payloadType, uint32_t clockRate,
- uint8_t videoOrientationId = 0);
- RtpPacketizationConfig(const RtpPacketizationConfig &) = delete;
- /// Convert timestamp to seconds
- /// @param timestamp Timestamp
- /// @param clockRate Clock rate for timestamp calculation
- static double getSecondsFromTimestamp(uint32_t timestamp, uint32_t clockRate);
- /// Convert timestamp to seconds
- /// @param timestamp Timestamp
- double timestampToSeconds(uint32_t timestamp);
- /// Convert seconds to timestamp
- /// @param seconds Number of seconds
- /// @param clockRate Clock rate for timestamp calculation
- static uint32_t getTimestampFromSeconds(double seconds, uint32_t clockRate);
- /// Convert seconds to timestamp
- /// @param seconds Number of seconds
- uint32_t secondsToTimestamp(double seconds);
- };
- } // namespace rtc
- #endif /* RTC_ENABLE_MEDIA */
- #endif /* RTC_RTP_PACKETIZATION_CONFIG_H */
|