fix(framecache): correct fc_header_t size assertion

This commit is contained in:
Wild Dragon Dev 2026-06-03 18:08:28 +00:00
parent aff3c0ece2
commit 91f80c05bc

View file

@ -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) */