[xiph-commits] r7690 - trunk/vorbis-tools/ogginfo

msmith at motherfish-iii.xiph.org msmith at motherfish-iii.xiph.org
Thu Sep 2 20:09:25 PDT 2004


Author: msmith
Date: 2004-09-02 20:09:24 -0700 (Thu, 02 Sep 2004)
New Revision: 7690

Modified:
   trunk/vorbis-tools/ogginfo/ogginfo2.c
Log:
Fix #565: inconsistent use of kb/s and kbps


Modified: trunk/vorbis-tools/ogginfo/ogginfo2.c
===================================================================
--- trunk/vorbis-tools/ogginfo/ogginfo2.c	2004-09-03 01:24:08 UTC (rev 7689)
+++ trunk/vorbis-tools/ogginfo/ogginfo2.c	2004-09-03 03:09:24 UTC (rev 7690)
@@ -399,13 +399,13 @@
     info(_("Vorbis stream %d:\n"
            "\tTotal data length: %I64d bytes\n"
            "\tPlayback length: %ldm:%02ld.%03lds\n"
-           "\tAverage bitrate: %f kbps\n"), 
+           "\tAverage bitrate: %f kb/s\n"), 
             stream->num,inf->bytes, minutes, seconds, milliseconds, bitrate);
 #else
     info(_("Vorbis stream %d:\n"
            "\tTotal data length: %lld bytes\n"
            "\tPlayback length: %ldm:%02ld.%03lds\n"
-           "\tAverage bitrate: %f kbps\n"), 
+           "\tAverage bitrate: %f kb/s\n"), 
             stream->num,inf->bytes, minutes, seconds, milliseconds, bitrate);
 #endif
 



More information about the commits mailing list