changeset 2947:cdfb199be537 libavformat

cosmetics
author bcoudurier
date Sat, 19 Jan 2008 16:19:06 +0000
parents f90a2a21d5f6
children 787c0b2a2acb
files mxf.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mxf.c	Sat Jan 19 16:18:32 2008 +0000
+++ b/mxf.c	Sat Jan 19 16:19:06 2008 +0000
@@ -917,14 +917,14 @@
 {
     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 @@
                 }
             }
         }
-        if(ctx_size && tag == 0x3C0A)
+        if (ctx_size && tag == 0x3C0A)
             get_buffer(pb, ctx->uid, 16);
         else
             read_child(ctx, pb, tag, size, uid);