Hi all, I try to do forward declaration of ebur128_state, but failed, and I found that just simply making the following changes, it works: before ```c typedef struct { ... } ebur128_state; ``` after ```c typedef struct ebur128_state{ ... } ebur128_state; ```