forked from FFmpeg/FFmpeg
avcodec/osq: fix type of nb_samples
Fixes crash caused by signed integer overflow.
This commit is contained in:
parent
5d84ac5a40
commit
87b8c10819
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ typedef struct OSQContext {
|
|||
|
||||
int decorrelate;
|
||||
int frame_samples;
|
||||
int64_t nb_samples;
|
||||
uint64_t nb_samples;
|
||||
|
||||
int32_t *decode_buffer[2];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue