mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-26 04:31:37 +08:00
add commet and remove compile warn
This commit is contained in:
parent
7f65e082f5
commit
6237dd48dc
@ -89,6 +89,7 @@ bool DataPacket::storeToHeader(){
|
|||||||
|
|
||||||
storeUint32(ptr, dst_socket_id);
|
storeUint32(ptr, dst_socket_id);
|
||||||
ptr += 4;
|
ptr += 4;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
bool DataPacket::storeToData(uint8_t *buf, size_t len) {
|
bool DataPacket::storeToData(uint8_t *buf, size_t len) {
|
||||||
_data = BufferRaw::create();
|
_data = BufferRaw::create();
|
||||||
|
@ -314,6 +314,22 @@ class MsgDropReqPacket : public ControlPacket
|
|||||||
uint32_t last_pkt_seq_num;
|
uint32_t last_pkt_seq_num;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
0 1 2 3
|
||||||
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
||||||
|
+-+-+-+-+-+-+-+-+-+-+-+-+- SRT Header +-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||||
|
|1| Control Type | Reserved |
|
||||||
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||||
|
| Type-specific Information |
|
||||||
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||||
|
| Timestamp |
|
||||||
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||||
|
| Destination Socket ID |
|
||||||
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||||
|
Figure 16: Shutdown control packet
|
||||||
|
https://haivision.github.io/srt-rfc/draft-sharabayko-srt.html#name-shutdown
|
||||||
|
|
||||||
|
*/
|
||||||
class ShutDownPacket : public ControlPacket
|
class ShutDownPacket : public ControlPacket
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
Loading…
Reference in New Issue
Block a user