mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
Add data alignment declaration
This commit is contained in:
parent
f382f1fa95
commit
519cce8c29
@ -210,7 +210,7 @@ string FCI_NACK::dumpString() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
#pragma pack(push, 1)
|
||||||
class RunLengthChunk {
|
class RunLengthChunk {
|
||||||
public:
|
public:
|
||||||
static size_t constexpr kSize = 2;
|
static size_t constexpr kSize = 2;
|
||||||
@ -241,6 +241,7 @@ public:
|
|||||||
// 打印本对象
|
// 打印本对象
|
||||||
string dumpString() const;
|
string dumpString() const;
|
||||||
};
|
};
|
||||||
|
#pragma pack(pop)
|
||||||
|
|
||||||
RunLengthChunk::RunLengthChunk(SymbolStatus status, uint16_t run_length) {
|
RunLengthChunk::RunLengthChunk(SymbolStatus status, uint16_t run_length) {
|
||||||
type = 0;
|
type = 0;
|
||||||
@ -261,7 +262,7 @@ string RunLengthChunk::dumpString() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
#pragma pack(push, 1)
|
||||||
class StatusVecChunk {
|
class StatusVecChunk {
|
||||||
public:
|
public:
|
||||||
static size_t constexpr kSize = 2;
|
static size_t constexpr kSize = 2;
|
||||||
@ -292,6 +293,7 @@ public:
|
|||||||
// 打印本对象
|
// 打印本对象
|
||||||
string dumpString() const;
|
string dumpString() const;
|
||||||
};
|
};
|
||||||
|
#pragma pack(pop)
|
||||||
|
|
||||||
StatusVecChunk::StatusVecChunk(bool symbol_bit, const vector<SymbolStatus> &status) {
|
StatusVecChunk::StatusVecChunk(bool symbol_bit, const vector<SymbolStatus> &status) {
|
||||||
CHECK(status.size() << symbol_bit <= 14);
|
CHECK(status.size() << symbol_bit <= 14);
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#include "Rtcp.h"
|
#include "Rtcp.h"
|
||||||
|
|
||||||
namespace mediakit {
|
namespace mediakit {
|
||||||
|
#pragma pack(push, 1)
|
||||||
|
|
||||||
/////////////////////////////////////////// PSFB ////////////////////////////////////////////////////
|
/////////////////////////////////////////// PSFB ////////////////////////////////////////////////////
|
||||||
|
|
||||||
@ -375,6 +376,6 @@ private:
|
|||||||
// feedback packet count,反馈包号,本包是第几个transport-cc包,每次加1 |
|
// feedback packet count,反馈包号,本包是第几个transport-cc包,每次加1 |
|
||||||
uint8_t fb_pkt_count;
|
uint8_t fb_pkt_count;
|
||||||
};
|
};
|
||||||
|
#pragma pack(pop)
|
||||||
} // namespace mediakit
|
} // namespace mediakit
|
||||||
#endif // ZLMEDIAKIT_RTCPFCI_H
|
#endif // ZLMEDIAKIT_RTCPFCI_H
|
||||||
|
Loading…
Reference in New Issue
Block a user