Compare commits

...

3 Commits

Author SHA1 Message Date
xiongguangjie
67b0d71c9c
Merge 0cfb5a0d66 into 226b87a633 2024-11-20 07:30:03 +00:00
xiongguangjie
0cfb5a0d66 update comment 2024-11-20 15:29:29 +08:00
xiongguangjie
271a273eea improve code comment 2024-11-20 15:25:58 +08:00

View File

@ -772,7 +772,6 @@ private:
/** /**
* *
* @param size
*/ */
void net2Host(); void net2Host();
}; };
@ -854,9 +853,9 @@ public:
// Indicates which temporal layer this bitrate concerns. // Indicates which temporal layer this bitrate concerns.
uint32_t temporal_layer : 4; uint32_t temporal_layer : 4;
#else #else
// reception report count // Indicates which temporal layer this bitrate concerns.
uint32_t temporal_layer : 4; uint32_t temporal_layer : 4;
// padding末尾是否有追加填充 // Indicates which temporal layer this bitrate concerns.
uint32_t spatial_layer : 4; uint32_t spatial_layer : 4;
#endif #endif
//The encoder target bitrate for this layer, in kbps. //The encoder target bitrate for this layer, in kbps.
@ -871,7 +870,6 @@ private:
/** /**
* *
* @param size
*/ */
void net2Host(); void net2Host();
}; };
@ -889,7 +887,7 @@ public:
/** /**
* RtcpXRTargetBitrate包RtcpHeader部分() * RtcpXRTargetBitrate包RtcpHeader部分()
* @param item_count RtcpXRTargetBitrateItem对象个数 * @param item_count RtcpXRTargetBitrateItem对象个数
* @return RtcpXRDLRR * @return RtcpXRTargetBitrate
*/ */
static std::shared_ptr<RtcpXRTargetBitrate> create(size_t item_count); static std::shared_ptr<RtcpXRTargetBitrate> create(size_t item_count);