Commit 7f09b888 authored by Tobias Rapp's avatar Tobias Rapp Committed by Michael Niedermayer

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: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 865e20da
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment