git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b6576dc
)
lavf/id3v2: cosmetics: reindent
author
Matthieu Bouron
<matthieu.bouron@gmail.com>
Sat, 19 Jan 2013 12:38:26 +0000
(13:38 +0100)
committer
Michael Niedermayer
<michaelni@gmx.at>
Sat, 19 Jan 2013 13:37:44 +0000
(14:37 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/id3v2.c
patch
|
blob
|
history
diff --git
a/libavformat/id3v2.c
b/libavformat/id3v2.c
index
f805f5b
..
98f8f9e
100644
(file)
--- 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) |