diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-02-28 17:31:25 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-02-28 17:31:25 +0000 |
commit | 344bcea46de2e00faca945463818962fca552826 (patch) | |
tree | b84f1b9d944f57eeb3de77344c45f92e8e7c9c41 /libavformat/flacdec.c | |
parent | d3a57949583670dab00713401d469fba013d4c7e (diff) | |
download | ffmpeg-344bcea46de2e00faca945463818962fca552826.tar.gz |
cosmetics: indentation
Originally committed as revision 17662 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/flacdec.c')
-rw-r--r-- | libavformat/flacdec.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavformat/flacdec.c b/libavformat/flacdec.c index 94d916a728..83758b2be0 100644 --- a/libavformat/flacdec.c +++ b/libavformat/flacdec.c @@ -36,14 +36,14 @@ static int flac_read_header(AVFormatContext *s, 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; } |