diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-26 13:08:22 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-26 13:08:22 +0000 |
commit | b97fb809b8f0b2bd4ba5ab93e3f9e2540092ff79 (patch) | |
tree | c7866a0912fdad409fb44f26f84ce6e3e8afb6cc | |
parent | 1ee2d4480538860b8510d686e302ed1c006e9ca7 (diff) | |
download | ffmpeg-b97fb809b8f0b2bd4ba5ab93e3f9e2540092ff79.tar.gz |
cosmetics: indentation
Originally committed as revision 17610 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/movenc.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 525e81a84b..ad27850305 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1294,14 +1294,13 @@ static int mov_write_meta_tag(ByteIOContext *pb, MOVContext *mov, AVFormatContext *s) { int size = 0; - - int64_t pos = url_ftell(pb); - put_be32(pb, 0); /* size */ - put_tag(pb, "meta"); - put_be32(pb, 0); - mov_write_itunes_hdlr_tag(pb, mov, s); - mov_write_ilst_tag(pb, mov, s); - size = updateSize(pb, pos); + int64_t pos = url_ftell(pb); + put_be32(pb, 0); /* size */ + put_tag(pb, "meta"); + put_be32(pb, 0); + mov_write_itunes_hdlr_tag(pb, mov, s); + mov_write_ilst_tag(pb, mov, s); + size = updateSize(pb, pos); return size; } |