diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-06-11 16:45:38 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-06-11 16:45:38 +0000 |
commit | 739178107c431e0d43ec38e9d86352940ee3d1dc (patch) | |
tree | 985a60c9e5683f46d2050b06e101ca79a351a253 /libavformat/matroskadec.c | |
parent | 8dbe48fccb9be18fff0b42dc3dfc85ea50ed2a3c (diff) | |
download | ffmpeg-739178107c431e0d43ec38e9d86352940ee3d1dc.tar.gz |
matroskadec: cosmetic: indentation
Originally committed as revision 23590 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r-- | libavformat/matroskadec.c | 12 |
1 files 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; i<blocks_list->nb_elem; i++) |