mirror of https://git.ffmpeg.org/ffmpeg.git
matroskadec: cosmetic: indentation
Originally committed as revision 23590 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8dbe48fccb
commit
739178107c
|
@ -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++)
|
||||
|
|
Loading…
Reference in New Issue