0
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 24 hours ago. based on code collected 1 day ago.
Jun 12, 2023 — Jun 12, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
implement --quiet and --verbose. Verbosity now defaults to '1', which only warnings and fatal errors. -v recovers the old behavior. intermediate levels can be set with --verbose=n. -q/--quiet is the same as --verbose=0; it should supress all messages.
Ralph Giles
as giles
More... almost 22 years ago
implement --version
Ralph Giles
as giles
More... almost 22 years ago
add config_types.h.in, generated by autogen.sh, to the AM MAINTAINERCLEANFILES variable.
Ralph Giles
as giles
More... almost 22 years ago
Add a '--hash' cmdline option to print the SHA-1 hash of the decoded document. Useful for regression testing. We currently use the openssl/ libcrypto implemention; there's provision for fallback to a local version but I've not written one yet. It should probably just be the default once provided.
Ralph Giles
as giles
More... almost 22 years ago
update configure.ac to 2.53, use AC_LIBOBJ() instead of updating LIBOBJS directly
Ralph Giles
as giles
More... almost 22 years ago
remove 'can define uint32_t as' messages and fix a typo
Ralph Giles
as giles
More... almost 22 years ago
Don't use shell expansions in the init macro arguments; autoconf now provides m4 macros for that.
Ralph Giles
as giles
More... almost 22 years ago
make jbig2_decode_text_region() static
Ralph Giles
as giles
More... almost 22 years ago
Fix up make_output_filename(), improve usage message.
Ralph Giles
as giles
More... almost 22 years ago
ui cleanup. output filename generation is broken
Ralph Giles
as giles
More... almost 22 years ago
protect definitions of TRUE/FALSE
Ralph Giles
as giles
More... almost 22 years ago
Prefer #if defined()
Ralph Giles
as giles
More... almost 22 years ago
Correct win32 headers dependency.
Ralph Giles
as giles
More... almost 22 years ago
We now decode the CVision Starr Report page embedded stream, once extracted from the pdf.
Ralph Giles
as giles
More... almost 22 years ago
Work around missing end-of-page segment in CVision's PDF-embedded jbig2 streams. jbig2_complete_page() becomes a public function marking the current page finished so the client can call it at end-of-data, since data-shovel interface has no way of passing that out-of-band. The segment dispatch calls a new jbig2_parse_end_of_page() which does error checking and then calls jbig2_complete_page().
Ralph Giles
as giles
More... almost 22 years ago
Correct the dictionary-referral logic in the text segment decoder. Previously we were using the decode order index to lookup the referenced segments(s) but this breaks if the segment numbers don't begin and 0 and increase one-by-one. We now search backward looking for a matching segment number. Should replace this with a binary search once we start seeing bigger files.
Ralph Giles
as giles
More... almost 22 years ago
additional debug messages
Ralph Giles
as giles
More... almost 22 years ago
Fix parsing of sequential files.
Ralph Giles
as giles
More... almost 22 years ago
Add support for building under Microsoft Visual C++ after a patch from Russell Lang. Please test.
Ralph Giles
as giles
More... almost 22 years ago
Remove the internal include of stdint.h from jbig2.h, enforcing the requirement that the calling C file to do so.
Ralph Giles
as giles
More... almost 22 years ago
Add a CHANGES document.
Ralph Giles
as giles
More... almost 22 years ago
add pbm2png to cvsignore
Ralph Giles
as giles
More... almost 22 years ago
Update pbm2png.c to pass a jbig2 context for the allocator, so that it can be linked against the current routines.
Ralph Giles
as giles
More... almost 22 years ago
Don't look for png.h specifically. This was causing problems with png.h was in an -I in CFLAGS, but not the standard place.
Ralph Giles
as giles
More... almost 22 years ago
add config_types.h(.in) to cvsignore
Ralph Giles
as giles
More... almost 22 years ago
Work around stdint.h portability problems. If the C99 header isn't available, look for uint32_t in a few other likely headers. Also try and discover appropriate sizes and use our own typedefs if no useful header is found.
Ralph Giles
as giles
More... almost 22 years ago
minor rename
Ralph Giles
as giles
More... almost 22 years ago
Handle lossy and intermediate text regions as well as lossless immediate. Store the bitmap for intermediate text regions into the segment's result field for later use by a refinement region.
Ralph Giles
as giles
More... almost 22 years ago
API renames. Main loop is now jbig_data_in(data); image=jbig2_page_out();
Ralph Giles
as giles
More... almost 22 years ago
cvsignore update
Ralph Giles
as giles
More... almost 22 years ago