libebur128
libebur128 copied to clipboard
struct ebur128_state forward declaration
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
typedef struct {
...
} ebur128_state;
after
typedef struct ebur128_state{
...
} ebur128_state;