Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com> --- libavformat/astenc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/libavformat/astenc.c b/libavformat/astenc.c index cf75b48b21..a5792e0b07 100644 --- a/libavformat/astenc.c +++ b/libavformat/astenc.c @@ -118,9 +118,7 @@ static int ast_write_packet(AVFormatContext *s, AVPacket *pkt) avio_wb32(pb, size); /* Block size */ /* padding */ - avio_wb64(pb, 0); - avio_wb64(pb, 0); - avio_wb64(pb, 0); + ffio_fill(pb, 0, 24); avio_write(pb, pkt->data, pkt->size); -- 2.30.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".