axxel

Results 16 issues of axxel

The pthreads based multi-threading code should be improved (IMHO). I see two options: 1. keep the internal 'explicit' interface more or less like it is but switch from pthreads to...

@shoffmeister brought up the question of whether the habit of quoting class/function names in error strings adds value (https://github.com/darktable-org/rawspeed/pull/61#discussion_r99428209). There is a (inconsistently used) pattern that looks like this: ```...

I have 3 issues with the custom types specified here: https://github.com/darktable-org/rawspeed/blob/develop/src/librawspeed/common/Common.h#L35-L41 1) Their **naming** contains the size info twice, e.g. `ushort16` and the names (strings) are not equally long. I...

Disclaimer: I apologize in advance if this should be considered bad style or if the following opinion should offend anyone. To anyone actively using this code base. In case you...

Hi, I just noticed your project as I saw it mentioned in https://github.com/zxing/zxing. After realizing that it is based on "our" c++ fork, I was curious what you offered on...

I followed the README plus blacklisted the `mt7601u` module. The config file is unchanged from the template in this repo. The system is an x86 (Atom) running a Debian with...

EDIT: The following initial description of the issue is outdated. There is nothing wrong with the JFIF header (there is none at all) nor are there any unknown markers contained....

I am currently looking into reducing code duplication in the 3 Huffman decoder implementations and it seems to me there is a bug in `NikonDecompressor`. The special Huffman sign extension...

I recently implemented a Rust wrapper for my [zxing-cpp](https://github.com/zxing-cpp/zxing-cpp/tree/master/wrappers/rust) barcode scanning library. On the c++ side I have the [ImageView](https://github.com/zxing-cpp/zxing-cpp/blob/fb8d447c52aa583d6a499012792a9be93330749e/core/src/ImageView.h#L41) class that I needed to wrap/replace in Rust. I thought...

I'm trying to cross-compile to aarch64. I installed `crossbuild-essential-arm64` and now have a working compiler and toolchain, meaning I can compile a hello-world program and run it happily. Next step...