fix(framecache): correct fc_header_t size assertion
This commit is contained in:
parent
aff3c0ece2
commit
91f80c05bc
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ typedef struct {
|
|||
_Atomic uint64_t dropped_frames;
|
||||
char source_type[32]; /* "deltacast" | "blackmagic" | "srt" | "rtmp" */
|
||||
char slot_id[FC_MAX_SLOT_ID];
|
||||
uint8_t _pad[FC_HEADER_SIZE - 112];
|
||||
uint8_t _pad[FC_HEADER_SIZE - 144];
|
||||
} fc_header_t;
|
||||
|
||||
/* Per-frame metadata + data (variable length — use fc_frame_at() accessor) */
|
||||
|
|
|
|||
Loading…
Reference in a new issue