Commit d6b16a91 authored by reimar's avatar reimar

Correctly print number of remaining bytes in oggparsevorbis instead of always

with inverted sign.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19978 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b49f57b7
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment