Mercurial > libavformat.hg
comparison matroskadec.c @ 3786:33a94467ea2b libavformat
matroskadec: cosmetics: indentation
author | aurel |
---|---|
date | Wed, 27 Aug 2008 19:58:55 +0000 |
parents | fd49d42b918f |
children | 8f1928b41f45 |
comparison
equal
deleted
inserted
replaced
3785:fd49d42b918f | 3786:33a94467ea2b |
---|---|
1656 timestamp = 0; | 1656 timestamp = 0; |
1657 | 1657 |
1658 if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) { | 1658 if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) { |
1659 if (st->nb_index_entries) | 1659 if (st->nb_index_entries) |
1660 url_fseek(s->pb, st->index_entries[st->nb_index_entries-1].pos, SEEK_SET); | 1660 url_fseek(s->pb, st->index_entries[st->nb_index_entries-1].pos, SEEK_SET); |
1661 while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) { | 1661 while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) { |
1662 matroska_clear_queue(matroska); | 1662 matroska_clear_queue(matroska); |
1663 if (matroska_parse_cluster(matroska) < 0) | 1663 if (matroska_parse_cluster(matroska) < 0) |
1664 break; | 1664 break; |
1665 } | 1665 } |
1666 } | 1666 } |
1667 | 1667 |
1668 matroska_clear_queue(matroska); | 1668 matroska_clear_queue(matroska); |
1669 if (index < 0) | 1669 if (index < 0) |
1670 return 0; | 1670 return 0; |