summaryrefslogtreecommitdiff
path: root/libavformat/mxf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/mxf.c')
-rw-r--r--libavformat/mxf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c
index 5ce7569b00..5e608f3fd3 100644
--- a/libavformat/mxf.c
+++ b/libavformat/mxf.c
@@ -917,14 +917,14 @@ static int mxf_read_local_tags(MXFContext *mxf, KLVPacket *klv, int (*read_child
{
ByteIOContext *pb = mxf->fc->pb;
MXFMetadataSet *ctx = ctx_size ? av_mallocz(ctx_size) : mxf;
- uint64_t klv_end= url_ftell(pb) + klv->length;
+ uint64_t klv_end = url_ftell(pb) + klv->length;
if (!ctx)
return -1;
while (url_ftell(pb) + 4 < klv_end) {
int tag = get_be16(pb);
int size = get_be16(pb); /* KLV specified by 0x53 */
- uint64_t next= url_ftell(pb) + size;
+ uint64_t next = url_ftell(pb) + size;
UID uid;
if (!size) { /* ignore empty tag, needed for some files with empty UMID tag */
@@ -944,7 +944,7 @@ static int mxf_read_local_tags(MXFContext *mxf, KLVPacket *klv, int (*read_child
}
}
}
- if(ctx_size && tag == 0x3C0A)
+ if (ctx_size && tag == 0x3C0A)
get_buffer(pb, ctx->uid, 16);
else
read_child(ctx, pb, tag, size, uid);