Mercurial > libavformat.hg
changeset 4612:259725e31ef1 libavformat
cosmetics: indentation
author | jbr |
---|---|
date | Sat, 28 Feb 2009 17:31:25 +0000 |
parents | 11cce150a895 |
children | 0642f8079ecf |
files | flacdec.c |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/flacdec.c Sat Feb 28 17:24:56 2009 +0000 +++ b/flacdec.c Sat Feb 28 17:31:25 2009 +0000 @@ -36,14 +36,14 @@ st->need_parsing = AVSTREAM_PARSE_FULL; /* the parameters will be extracted from the compressed bitstream */ - /* skip ID3v2 header if found */ - ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE); - if (ret == ID3v2_HEADER_SIZE && ff_id3v2_match(buf)) { - int len = ff_id3v2_tag_len(buf); - url_fseek(s->pb, len - ID3v2_HEADER_SIZE, SEEK_CUR); - } else { - url_fseek(s->pb, 0, SEEK_SET); - } + /* skip ID3v2 header if found */ + ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE); + if (ret == ID3v2_HEADER_SIZE && ff_id3v2_match(buf)) { + int len = ff_id3v2_tag_len(buf); + url_fseek(s->pb, len - ID3v2_HEADER_SIZE, SEEK_CUR); + } else { + url_fseek(s->pb, 0, SEEK_SET); + } return 0; }