summaryrefslogtreecommitdiff
path: root/libavformat/mxfenc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-23 02:16:41 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-27 07:08:59 +0200
commitc3222931aba47b313a5b5b9f3796f08433c5f3b9 (patch)
treeba94e497b1c4b665355e1a3b4fec729f1e8c87b1 /libavformat/mxfenc.c
parent9fab059eabf19da13cd80267fba3e9d035c1c08b (diff)
avformat/mxfenc: Simplfy writing padding
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/mxfenc.c')
-rw-r--r--libavformat/mxfenc.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index f37606ed89..56facbe4b7 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -965,7 +965,6 @@ static void mxf_write_structural_component(AVFormatContext *s, AVStream *st, MXF
{
MXFContext *mxf = s->priv_data;
AVIOContext *pb = s->pb;
- int i;
mxf_write_metadata_key(pb, 0x011100);
PRINT_KEY(s, "sturctural component key", pb->buf_ptr - 16);
@@ -985,8 +984,7 @@ static void mxf_write_structural_component(AVFormatContext *s, AVStream *st, MXF
// write source package uid, end of the reference
mxf_write_local_tag(s, 32, 0x1101);
if (!package->ref) {
- for (i = 0; i < 4; i++)
- avio_wb64(pb, 0);
+ ffio_fill(pb, 0, 32);
} else
mxf_write_umid(s, package->ref->instance);