[FFmpeg-cvslog] r17662 - trunk/libavformat/flacdec.c
jbr
subversion
Sat Feb 28 18:31:25 CET 2009
Author: jbr
Date: Sat Feb 28 18:31:25 2009
New Revision: 17662
Log:
cosmetics: indentation
Modified:
trunk/libavformat/flacdec.c
Modified: trunk/libavformat/flacdec.c
==============================================================================
--- trunk/libavformat/flacdec.c Sat Feb 28 18:24:56 2009 (r17661)
+++ trunk/libavformat/flacdec.c Sat Feb 28 18:31:25 2009 (r17662)
@@ -36,14 +36,14 @@ static int flac_read_header(AVFormatCont
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;
}
More information about the ffmpeg-cvslog
mailing list