summaryrefslogtreecommitdiff
path: root/libavformat/mxf.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-01-19 16:19:06 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-01-19 16:19:06 +0000
commit3f2d859b7e191198bc51664c2b411a33d4a14ae9 (patch)
treec5b6b291166ae627c80764eb4d9a415805823e0c /libavformat/mxf.c
parent3a9c08be1b54abc0e0cb6fba0212fa3b825fb02a (diff)
cosmetics
Originally committed as revision 11565 to svn://svn.ffmpeg.org/ffmpeg/trunk
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);