Browse Source

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>
tags/n2.0
Tobias Rapp Michael Niedermayer 13 years ago
parent
commit
7f09b888e8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/avienc.c

+ 1
- 1
libavformat/avienc.c View File

@@ -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…
Cancel
Save