# HG changeset patch # User bcoudurier # Date 1213173575 0 # Node ID bd282ad0065f49b2612658f1063b9e612887fa11 # Parent 3046c8e6ba4f9005a9f7f499615a7e4d95ad32a5 cosmetics diff -r 3046c8e6ba4f -r bd282ad0065f movenc.c --- a/movenc.c Wed Jun 11 08:17:38 2008 +0000 +++ b/movenc.c Wed Jun 11 08:39:35 2008 +0000 @@ -1302,7 +1302,7 @@ put_be32(pb, 0x01); /* type */ put_be16(pb, language_code("eng")); /* language */ put_be16(pb, 0x01); /* ? */ - ascii_to_wc (pb, s->title); + ascii_to_wc(pb, s->title); size += len*2+10; // Date @@ -1314,7 +1314,7 @@ put_be32(pb, 0x03); /* type */ put_be16(pb, language_code("und")); /* language */ put_be16(pb, 0x01); /* ? */ - ascii_to_wc (pb, "2006/04/01 11:11:11"); + ascii_to_wc(pb, "2006/04/01 11:11:11"); size += len*2+10; // size @@ -1376,7 +1376,7 @@ } /* TODO: This needs to be more general */ -static void mov_write_ftyp_tag (ByteIOContext *pb, AVFormatContext *s) +static void mov_write_ftyp_tag(ByteIOContext *pb, AVFormatContext *s) { MOVContext *mov = s->priv_data;