mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-02-16 10:30:59 +00:00
Change FEC status message to avoid truncating large frames
This commit is contained in:
12
src/Video.h
12
src/Video.h
@@ -43,16 +43,16 @@ typedef struct _SS_PING {
|
||||
} SS_PING, *PSS_PING;
|
||||
|
||||
// Fields are big-endian
|
||||
#define SS_FRAME_FEC_PTYPE 0x5501
|
||||
#define SS_FRAME_FEC_PTYPE 0x5502
|
||||
typedef struct _SS_FRAME_FEC_STATUS {
|
||||
uint32_t frameIndex;
|
||||
uint16_t highestReceivedSequenceNumber;
|
||||
uint16_t nextContiguousSequenceNumber;
|
||||
uint8_t missingPacketsBeforeHighestReceived;
|
||||
uint8_t totalDataPackets;
|
||||
uint8_t totalParityPackets;
|
||||
uint8_t receivedDataPackets;
|
||||
uint8_t receivedParityPackets;
|
||||
uint16_t missingPacketsBeforeHighestReceived;
|
||||
uint16_t totalDataPackets;
|
||||
uint16_t totalParityPackets;
|
||||
uint16_t receivedDataPackets;
|
||||
uint16_t receivedParityPackets;
|
||||
uint8_t fecPercentage;
|
||||
uint8_t multiFecBlockIndex;
|
||||
uint8_t multiFecBlockCount;
|
||||
|
||||
Reference in New Issue
Block a user