mpeg: Fix int overflow, closes #756

This commit is contained in:
evpobr 2021-06-16 12:20:41 +05:00
parent 01628f48b9
commit e46c4b9eb2

View File

@ -42,7 +42,7 @@ typedef struct
size_t block_len ;
int frame_samples ;
double compression ;
int initialized : 1 ;
int initialized ;
} MPEG_L3_ENC_PRIVATE ;