From 739178107c431e0d43ec38e9d86352940ee3d1dc Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Fri, 11 Jun 2010 16:45:38 +0000 Subject: [PATCH] matroskadec: cosmetic: indentation Originally committed as revision 23590 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/matroskadec.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index a486d249f2..99c1cf0b5c 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -729,11 +729,11 @@ static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, void *data) { if (!matroska->current_id) { - uint64_t id; - int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id); - if (res < 0) - return res; - matroska->current_id = id | 1 << 7*res; + uint64_t id; + int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id); + if (res < 0) + return res; + matroska->current_id = id | 1 << 7*res; } return ebml_parse_id(matroska, syntax, matroska->current_id, data); } @@ -1802,7 +1802,7 @@ static int matroska_parse_cluster(MatroskaDemuxContext *matroska) matroska->prev_pkt = NULL; if (matroska->current_id) pos -= 4; /* sizeof the ID which was already read */ - res = ebml_parse(matroska, matroska_clusters, &cluster); + res = ebml_parse(matroska, matroska_clusters, &cluster); blocks_list = &cluster.blocks; blocks = blocks_list->elem; for (i=0; inb_elem; i++)