Displaying 1 result from an estimated 1 matches for "sizeof_oggz_off_t".
2009 May 04
1
[PATCH] oggz: inefficient seeking
...hen DEBUG is defined.
Now it takes 0.0023 seconds to preform the seek. Patch is against
git commit 718a73d31011a7985365f4473e735b96791c7156.
Thanks,
Sean
---
diff --git a/configure.ac b/configure.ac
index 6a2bb05..92075a3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -314,7 +314,7 @@ if test $SIZEOF_OGGZ_OFF_T = 4 ; then
OGGZ_OFF_MAX="0x7FFFFFFF"
PRI_OGGZ_OFF_T="l"
elif test $SIZEOF_OGGZ_OFF_T = 8 ; then
- PRI_OGGZ_OFF_T=PRId64
+ PRI_OGGZ_OFF_T="ll"
fi
dnl The following configured variables are written into the public header
diff --git a/src/liboggz/oggz...