mirror of https://git.ffmpeg.org/ffmpeg.git
avienc: fix overflow of audio sample count
Fixes an overflow of the sample count field within the audio stream header chunk if audio stream data exceeds 2GB. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
865e20daf3
commit
7f09b888e8
|
@ -57,7 +57,7 @@ typedef struct {
|
|||
|
||||
typedef struct {
|
||||
int64_t frames_hdr_strm;
|
||||
int audio_strm_length;
|
||||
int64_t audio_strm_length;
|
||||
int packet_count;
|
||||
int entry;
|
||||
|
||||
|
|
Loading…
Reference in New Issue