[xiph-commits] r3617 - liboggz/trunk/src/tools
conrad at svn.annodex.net
conrad at svn.annodex.net
Sun Jun 29 06:21:49 PDT 2008
Author: conrad
Date: 2008-06-29 06:21:48 -0700 (Sun, 29 Jun 2008)
New Revision: 3617
Modified:
liboggz/trunk/src/tools/oggz_tools.c
Log:
oggzinfo: fix byte offsets for reporting skeleton basetime
Modified: liboggz/trunk/src/tools/oggz_tools.c
===================================================================
--- liboggz/trunk/src/tools/oggz_tools.c 2008-06-29 12:16:34 UTC (rev 3616)
+++ liboggz/trunk/src/tools/oggz_tools.c 2008-06-29 13:21:48 UTC (rev 3617)
@@ -288,8 +288,8 @@
pres = 0.0;
}
- base_n = (double)INT64_LE_AT(&data[12]);
- base_d = (double)INT64_LE_AT(&data[20]);
+ base_n = (double)INT64_LE_AT(&data[28]);
+ base_d = (double)INT64_LE_AT(&data[36]);
if (base_d != 0.0) {
base = base_n / base_d;
} else {
More information about the commits
mailing list