You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avformat/astenc: Simplify writing padding
Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user