projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d3beed
)
Correctly print number of remaining bytes in oggparsevorbis instead of always
author
Reimar Döffinger
<Reimar.Doeffinger@gmx.de>
Wed, 23 Sep 2009 09:18:23 +0000
(09:18 +0000)
committer
Reimar Döffinger
<Reimar.Doeffinger@gmx.de>
Wed, 23 Sep 2009 09:18:23 +0000
(09:18 +0000)
with inverted sign.
Originally committed as revision 19978 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/oggparsevorbis.c
patch
|
blob
|
history
diff --git
a/libavformat/oggparsevorbis.c
b/libavformat/oggparsevorbis.c
index 5b45631ab620e156e5f700d6f691876939fc7358..afc3fcb5a671ff285d7ea73efa2737a0edc58d3d 100644
(file)
--- a/
libavformat/oggparsevorbis.c
+++ b/
libavformat/oggparsevorbis.c
@@
-112,7
+112,7
@@
vorbis_comment(AVFormatContext * as, uint8_t *buf, int size)
}
if (p != end)
- av_log(as, AV_LOG_INFO, "%ti bytes of comment header remain\n",
p-end
);
+ av_log(as, AV_LOG_INFO, "%ti bytes of comment header remain\n",
end-p
);
if (n > 0)
av_log(as, AV_LOG_INFO,
"truncated comment header, %i comments not found\n", n);