alsa-audio-dec: explicitly cast the delay to a signed int64
Otherwise the expression will be evaluated as unsigned, which will break
when the result should be negative.
CC:libav-stable@libav.org
(cherry picked from commit 089fac77a6
)
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
This commit is contained in:

committed by
Reinhard Tartler

parent
cbf51c4d36
commit
f9f2591beb
@@ -142,7 +142,7 @@ static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt)
|
||||
ts_delay += res;
|
||||
pkt->pts = timestamp.tv_sec * 1000000LL
|
||||
+ (timestamp.tv_nsec * st->codec->sample_rate
|
||||
- ts_delay * 1000000000LL + st->codec->sample_rate * 500LL)
|
||||
- (int64_t)ts_delay * 1000000000LL + st->codec->sample_rate * 500LL)
|
||||
/ (st->codec->sample_rate * 1000LL);
|
||||
|
||||
pkt->size = res * s->frame_size;
|
||||
|
Reference in New Issue
Block a user