mirror of https://git.ffmpeg.org/ffmpeg.git
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