mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-30 21:08:59 +08:00
matroskadec: cosmetics: indentation
Originally committed as revision 14995 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -1658,11 +1658,11 @@ static int matroska_read_seek(AVFormatContext *s, int stream_index,
|
|||||||
if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) {
|
if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) {
|
||||||
if (st->nb_index_entries)
|
if (st->nb_index_entries)
|
||||||
url_fseek(s->pb, st->index_entries[st->nb_index_entries-1].pos, SEEK_SET);
|
url_fseek(s->pb, st->index_entries[st->nb_index_entries-1].pos, SEEK_SET);
|
||||||
while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) {
|
while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) {
|
||||||
matroska_clear_queue(matroska);
|
matroska_clear_queue(matroska);
|
||||||
if (matroska_parse_cluster(matroska) < 0)
|
if (matroska_parse_cluster(matroska) < 0)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
matroska_clear_queue(matroska);
|
matroska_clear_queue(matroska);
|
||||||
|
Reference in New Issue
Block a user