# HG changeset patch # User reimar # Date 1253697503 0 # Node ID a59767d339288f4e3bb1b4d0e5fb856b5bc65efc # Parent 35aaa4f2ad8d5509b3fbd079cdfab85b3db7d81e Correctly print number of remaining bytes in oggparsevorbis instead of always with inverted sign. diff -r 35aaa4f2ad8d -r a59767d33928 oggparsevorbis.c --- a/oggparsevorbis.c Tue Sep 22 17:28:03 2009 +0000 +++ b/oggparsevorbis.c Wed Sep 23 09:18:23 2009 +0000 @@ -112,7 +112,7 @@ } 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);