You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-16 08:36:51 +02:00
matroskadec: cosmetic: indentation
Originally committed as revision 23590 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -729,11 +729,11 @@ static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
|
|||||||
void *data)
|
void *data)
|
||||||
{
|
{
|
||||||
if (!matroska->current_id) {
|
if (!matroska->current_id) {
|
||||||
uint64_t id;
|
uint64_t id;
|
||||||
int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id);
|
int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id);
|
||||||
if (res < 0)
|
if (res < 0)
|
||||||
return res;
|
return res;
|
||||||
matroska->current_id = id | 1 << 7*res;
|
matroska->current_id = id | 1 << 7*res;
|
||||||
}
|
}
|
||||||
return ebml_parse_id(matroska, syntax, matroska->current_id, data);
|
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;
|
matroska->prev_pkt = NULL;
|
||||||
if (matroska->current_id)
|
if (matroska->current_id)
|
||||||
pos -= 4; /* sizeof the ID which was already read */
|
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_list = &cluster.blocks;
|
||||||
blocks = blocks_list->elem;
|
blocks = blocks_list->elem;
|
||||||
for (i=0; i<blocks_list->nb_elem; i++)
|
for (i=0; i<blocks_list->nb_elem; i++)
|
||||||
|
Reference in New Issue
Block a user