1
I Use This!
Inactive

Commits : Listings

Analyzed about 21 hours ago. based on code collected about 21 hours ago.
Jun 27, 2024 — Jun 27, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
include dvdread headers as <libdvdread/*> for upcoming dvdread removal patch More... about 17 years ago
simplified autogen.sh: it relies on autoreconf now. More... about 17 years ago
removed unnecessary variables; More... about 17 years ago
LT_PREREQ isn't so harmless as I thought; commented as in Dan's patch More... about 17 years ago
added PREREQ on libtool 1.4. Apparently this macro works only on v2.2+, but it seems harmless otherwise. More... about 17 years ago
moved to configure.ac PREREQ on automake 1.3; More... about 17 years ago
We want to pass the version number to AC_INIT rather than AM_INIT_AUTOMAKE. Since we can't pass shell variables to AC_INIT, just define the version numbers in m4. We could just duplicate the version into AC_INIT and keep the shell variables as is, but this is a little cleaner, IMO. Later, we just recreate the DVDNAV_* shell variables with the m4 values, and everything is the same as it was before. More... about 17 years ago
autconf version must be in [N.M] format; More... about 17 years ago
mention to run autoreconf instead of ./autogen.sh More... about 17 years ago
let misc/Makefile.common (included by all others) defines the smallest automake version we need More... about 17 years ago
Add a short note about the new buildsystem More... about 17 years ago
Cosmetics: fix bracket typo and add empty line for readability. More... about 17 years ago
(char*) typecase to silence gcc; More... about 17 years ago
in dvdnav_sector_search() vobu is uint32_t it; More... about 17 years ago
in remap_loadmap() memzero tmp before using it; More... about 17 years ago
memzero ICB before using it; More... about 17 years ago
replaced *struct assignment with call to memcpy(); More... about 17 years ago
fixed incorrect type cast; More... about 17 years ago
correct type definitions for a couple of variables; More... about 17 years ago
replace an assert(getenv("HOME)) with a return NULL in cases when $HOME is not defined, as in the case of windows. More... about 17 years ago
gettimeofday() doesn't exist on windows, but recent mingw32 runtime include a replacement. The dvdnav replacement clashes with mingw32's one. This patch will check for it in configure.ac and define the private function only if gettimeofday() is not defined. More... about 17 years ago
changed version to 4.1.2 More... about 17 years ago
removed inclusion of vmcmd.h More... about 17 years ago
adapted the tree to the dvdread->libdvdread transition More... about 17 years ago
moved dvdread to libdvdread; it's the first step for the separation of the lib from dvdnav More... about 17 years ago
workaround wrong filesize indicated in the UDF; More... about 17 years ago
in dvdnav_close() protect the actual call do DVDCloseFile() with a mutex; More... about 17 years ago
read_playback_type() finally removes the last conditional bitfield struct More... about 17 years ago
read_cell_playback() removes another conditional bitfield. We're almost there! More... about 17 years ago
added read_pgci_srp() and removed another conditional bitfield More... about 17 years ago