@@ -23,39 +23,42 @@ namespace rtc {
23
23
#define H265_FU_HEADER_SIZE 1
24
24
// / Nalu header
25
25
struct RTC_CPP_EXPORT H265NalUnitHeader {
26
- /*
27
- * nal_unit_header( ) {
28
- * forbidden_zero_bit f(1)
29
- * nal_unit_type u(6)
30
- * nuh_layer_id u(6)
31
- * nuh_temporal_id_plus1 u(3)
32
- }
33
- */
34
- uint8_t _first = 0 ; // high byte of header
26
+ /*
27
+ * nal_unit_header( ) {
28
+ * forbidden_zero_bit f(1)
29
+ * nal_unit_type u(6)
30
+ * nuh_layer_id u(6)
31
+ * nuh_temporal_id_plus1 u(3)
32
+ }
33
+ */
34
+ uint8_t _first = 0 ; // high byte of header
35
35
uint8_t _second = 0 ; // low byte of header
36
36
37
37
bool forbiddenBit () const { return _first >> 7 ; }
38
38
uint8_t unitType () const { return (_first & 0b0111'1110 ) >> 1 ; }
39
39
uint8_t nuhLayerId () const { return ((_first & 0x1 ) << 5 ) | ((_second & 0b1111'1000 ) >> 3 ); }
40
- uint8_t nuhTempIdPlus1 () const { return _second & 0b111 ;}
40
+ uint8_t nuhTempIdPlus1 () const { return _second & 0b111 ; }
41
41
42
42
void setForbiddenBit (bool isSet) { _first = (_first & 0x7F ) | (isSet << 7 ); }
43
43
void setUnitType (uint8_t type) { _first = (_first & 0b1000'0001 ) | ((type & 0b11'1111 ) << 1 ); }
44
- void setNuhLayerId (uint8_t nuhLayerId) {
45
- _first = (_first & 0b1111'1110 ) | ((nuhLayerId & 0b10'0000 ) >> 5 );
46
- _second = (_second & 0b0000'0111 ) | ((nuhLayerId & 0b01'1111 ) << 3 ); }
47
- void setNuhTempIdPlus1 (uint8_t nuhTempIdPlus1) { _second = (_second & 0b1111'1000 ) | (nuhTempIdPlus1 & 0b111 ); }
44
+ void setNuhLayerId (uint8_t nuhLayerId) {
45
+ _first = (_first & 0b1111'1110 ) | ((nuhLayerId & 0b10'0000 ) >> 5 );
46
+ _second = (_second & 0b0000'0111 ) | ((nuhLayerId & 0b01'1111 ) << 3 );
47
+ }
48
+ void setNuhTempIdPlus1 (uint8_t nuhTempIdPlus1) {
49
+ _second = (_second & 0b1111'1000 ) | (nuhTempIdPlus1 & 0b111 );
50
+ }
48
51
};
49
52
50
53
// / Nalu fragment header
51
54
struct RTC_CPP_EXPORT H265NalUnitFragmentHeader {
52
55
/*
53
- * +---------------+
54
- * |0|1|2|3|4|5|6|7|
55
- * +-+-+-+-+-+-+-+-+
56
- * |S|E| FuType |
57
- * +---------------+
58
- */
56
+ * +---------------+
57
+ * |0|1|2|3|4|5|6|7|
58
+ * +-+-+-+-+-+-+-+-+
59
+ * |S|E| FuType |
60
+ * +---------------+
61
+ */
59
62
uint8_t _first = 0 ;
60
63
61
64
bool isStart () const { return _first >> 7 ; }
@@ -72,16 +75,18 @@ struct RTC_CPP_EXPORT H265NalUnitFragmentHeader {
72
75
// / Nal unit
73
76
struct RTC_CPP_EXPORT H265NalUnit : NalUnit {
74
77
H265NalUnit (const H265NalUnit &unit) = default ;
75
- H265NalUnit (size_t size, bool includingHeader = true ) : NalUnit(size, includingHeader, NalUnit::Type::H265) {}
78
+ H265NalUnit (size_t size, bool includingHeader = true )
79
+ : NalUnit(size, includingHeader, NalUnit::Type::H265) {}
76
80
H265NalUnit (binary &&data) : NalUnit(std::move(data)) {}
77
81
H265NalUnit () : NalUnit(NalUnit::Type::H265) {}
78
82
79
- template <typename Iterator> H265NalUnit (Iterator begin_, Iterator end_) : NalUnit(begin_, end_) {}
83
+ template <typename Iterator>
84
+ H265NalUnit (Iterator begin_, Iterator end_) : NalUnit(begin_, end_) {}
80
85
81
86
bool forbiddenBit () const { return header ()->forbiddenBit (); }
82
87
uint8_t unitType () const { return header ()->unitType (); }
83
88
uint8_t nuhLayerId () const { return header ()->nuhLayerId (); }
84
- uint8_t nuhTempIdPlus1 () const { return header ()->nuhTempIdPlus1 ();}
89
+ uint8_t nuhTempIdPlus1 () const { return header ()->nuhTempIdPlus1 (); }
85
90
86
91
binary payload () const {
87
92
assert (size () >= H265_NAL_HEADER_SIZE);
@@ -114,12 +119,12 @@ struct RTC_CPP_EXPORT H265NalUnit : NalUnit {
114
119
// / Nal unit fragment A
115
120
struct RTC_CPP_EXPORT H265NalUnitFragment : H265NalUnit {
116
121
static std::vector<shared_ptr<H265NalUnitFragment>> fragmentsFrom (shared_ptr<H265NalUnit> nalu,
117
- uint16_t maximumFragmentSize);
122
+ uint16_t maximumFragmentSize);
118
123
119
124
enum class FragmentType { Start, Middle, End };
120
125
121
126
H265NalUnitFragment (FragmentType type, bool forbiddenBit, uint8_t nuhLayerId,
122
- uint8_t nuhTempIdPlus1, uint8_t unitType, binary data);
127
+ uint8_t nuhTempIdPlus1, uint8_t unitType, binary data);
123
128
124
129
uint8_t unitType () const { return fragmentHeader ()->unitType (); }
125
130
@@ -158,11 +163,13 @@ struct RTC_CPP_EXPORT H265NalUnitFragment : H265NalUnit {
158
163
}
159
164
160
165
H265NalUnitFragmentHeader *fragmentHeader () {
161
- return reinterpret_cast <H265NalUnitFragmentHeader *>(fragmentIndicator () + H265_NAL_HEADER_SIZE);
166
+ return reinterpret_cast <H265NalUnitFragmentHeader *>(fragmentIndicator () +
167
+ H265_NAL_HEADER_SIZE);
162
168
}
163
169
164
170
const H265NalUnitFragmentHeader *fragmentHeader () const {
165
- return reinterpret_cast <const H265NalUnitFragmentHeader *>(fragmentIndicator () + H265_NAL_HEADER_SIZE);
171
+ return reinterpret_cast <const H265NalUnitFragmentHeader *>(fragmentIndicator () +
172
+ H265_NAL_HEADER_SIZE);
166
173
}
167
174
};
168
175
0 commit comments