mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
smush: properly flag audio packets
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
26fa84105b
commit
30659a2233
@ -213,6 +213,7 @@ static int smush_read_packet(AVFormatContext *ctx, AVPacket *pkt)
|
||||
return AVERROR(EIO);
|
||||
|
||||
pkt->stream_index = smush->audio_stream_index;
|
||||
pkt->flags |= AV_PKT_FLAG_KEY;
|
||||
pkt->duration = AV_RB32(pkt->data);
|
||||
if (pkt->duration == 0xFFFFFFFFu)
|
||||
pkt->duration = AV_RB32(pkt->data + 8);
|
||||
|
Loading…
Reference in New Issue
Block a user