diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2013-01-19 13:38:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-19 14:37:44 +0100 |
commit | 61625565e461d1f477889d168f4f87a8d1a99fb6 (patch) | |
tree | eebd92b4292ee00dee204c3da7bc35b8099cfaee /libavformat/id3v2.c | |
parent | b6576dca997645dd09b9b6647dd502b5b8450c2a (diff) | |
download | ffmpeg-61625565e461d1f477889d168f4f87a8d1a99fb6.tar.gz |
lavf/id3v2: cosmetics: reindent
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r-- | libavformat/id3v2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index f805f5bac2..98f8f9e94d 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -790,8 +790,8 @@ void ff_id3v2_read(AVFormatContext *s, const char *magic, ID3v2ExtraMeta **extra ret = avio_read(s->pb, buf, ID3v2_HEADER_SIZE); if (ret != ID3v2_HEADER_SIZE) break; - found_header = ff_id3v2_match(buf, magic); - if (found_header) { + found_header = ff_id3v2_match(buf, magic); + if (found_header) { /* parse ID3v2 header */ len = ((buf[6] & 0x7f) << 21) | ((buf[7] & 0x7f) << 14) | |