We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee88ab7 commit e6fe7bbCopy full SHA for e6fe7bb
src/h264rtpdepacketizer.cpp
@@ -28,11 +28,11 @@ const unsigned long stapaHeaderSize = 1;
28
const auto fuaHeaderSize = 2;
29
const auto rtpHeaderSize = 12;
30
31
-const auto naluTypeBitmask = std::byte(0x1F);
32
-const auto naluTypeSTAPA = std::byte(24);
33
-const auto naluTypeFUA = std::byte(28);
34
-const auto fuaEndBitmask = std::byte(0x40);
35
-const auto naluRefIdcBitmask = std::byte(0x60);
+const uint8_t naluTypeBitmask = 0x1F;
+const uint8_t naluTypeSTAPA = 24;
+const uint8_t naluTypeFUA = 28;
+const uint8_t fuaEndBitmask = 0x40;
+const uint8_t naluRefIdcBitmask = 0x60;
36
37
message_vector H264RtpDepacketizer::buildFrame(message_vector::iterator first,
38
message_vector::iterator last) {
0 commit comments