Displaying 2 results from an estimated 2 matches for "pri_oggz_off_t".
2009 May 15
0
[PATCH] oggz: limit seeking to specified range
...ffset_at;
+ } else {
+ unit_begin = unit_at;
+ offset_begin = offset_at;
+ }
+ }
+
og = &oggz->current_page;
for ( ; ; ) {
unit_last_iter = unit_at;
hit_eof = 0;
#ifdef DEBUG
- printf ("oggz_seek_set: [A] want u%lld: (u%lld - u%lld) [@%" PRI_OGGZ_OFF_T "d - @%" PRI_OGGZ_OFF_T "d]\n",
+ printf ("oggz_bounded_seek_set: [A] want u%lld: (u%lld - u%lld) [@%" PRI_OGGZ_OFF_T "d - @%" PRI_OGGZ_OFF_T "d]\n",
unit_target, unit_begin, unit_end, offset_begin, offset_end);
#endif
offset_gues...
2009 May 04
1
[PATCH] oggz: inefficient seeking
...ch 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_seek.c b/src/liboggz/oggz_seek.c
index c46f0ab..a8c1476 100644
--- a/sr...