The changes are minimal: fixed small bug in dcraw_emu sample command line processing. There are no changes in the LibRaw library (except version number increase).
The copy of LibRaw internal SVN repository has been created on GitHub. All changes made to the master branch through Git will be incorporated into the main Subversion repo.
So, if you wish to participate in LibRaw development you may get full sources from GitHub, add your changes, commit, and send us a request to merge your changes into the main source tree; all this using just standard GitHub tools. Also you can report a bug or make a feature request using GitHub interface.
Fixed bug in exception throwing in OpenMP AHD code.
LibRaw I/O is now C++ iostreams based instead of old FILE* interface. So multithreaded apps using LibRaw are about 1.5 times faster on unpack() stage under Linux and up to 3x times faster under Win32.
Feel free to contact us if you have bug reports or suggestions.
It is now possible to crop output image on postprocessing
stage (dcraw_process). Coordinates and size of the output box
are set via imgdata.params.cropbox[4] parameter. Look into
LibRaw documentation for more details.
Processing pipeline has changed: the black level is subtracted
from data on postprocessing stage either automatically
(on dcraw_process() stage) or by special LibRaw API call:
New ./configure script. Use ./configure -h for usage details.
New API cals static LibRaw::dcraw_clear_mem() (C++ API)
and libraw_dcraw_clear_mem(..) (C API).
This calls are used to free memory, allocated by
dcraw_make_mem_image() and dcraw_make_mem_thumb() instead
of free() call.
Many minor changes and bugfixes:
all client code should be recompiled due to structures size change
New cameras: Canon SX20 and 550D, Nikon D3s, Olympus E-P2, Panasonic GF1, G2 and G10, Samsung EX1, NX-10 and WB550, Sony A450, NEX-3 and NEX-5, Casio EX-Z1050, Fuji HS10/HS11, Kodak Z981, Phase One P65.
Color data changed for some cameras
Fixed file descriptor leak in dark frame subtraction processing
Small patch in Sony ARW2 unpacking code to make valgrind happy
New command-line switch -h in mem_image sample (half_size support)
Some patches by Johannes Hanika (darktable author):
OpenMP speedup for PPG-interpolation
green_matching - suppress of 'color maze' on cameras with
different green channels. This option is controlled by the field with the respective name in imgdata.params
all client code should be recompiled due to structures size
change
Recent comments