Browse Source

lavf/id3v2: cosmetics: reindent

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.2
Matthieu Bouron Michael Niedermayer 13 years ago
parent
commit
61625565e4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/id3v2.c

+ 2
- 2
libavformat/id3v2.c View File

@@ -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) |


Loading…
Cancel
Save