chris0e3

Results 7 issues of chris0e3

When compiling with clang I saw this error: ``` libde265/encoder/algo/coding-options.cc:67:23: error: call to 'move' is ambiguous mOptions.push_back( std::move(opt) ); ^~~~~~~~~ libde265/encoder/algo/coding-options.cc:198:16: note: in instantiation of member function 'CodingOptions::new_option' requested here...

This is based on the v1.0.8 sources. I see the following warning when compiling libde265-1.0.8: ``` libde265/encoder/algo/pb-mv.cc:228:24: warning: variable 'b' is uninitialized when used here [-Wuninitialized] else { b=abs_value(b+2); }...

Hello, Thanks for writing wyhash. It appears to me that `benchmark.cpp` in not really measuing what you/I expect/think. It calls `std::string::size()` for every hash call. This can be relatively expensive...

Hello. I’m encountering a few anomalies with `tessMeshRefineDelaunay` in `libtess2-1.0.2`. I’ve written a very simple example/test program that creates 1 or more, non-overlapping, circle or annulus like shapes, each with...

### Describe the bug The following C++ code compiles but fails when executed on any armv8 (clang/gcc any version) server. Also `gettimeofday`, `timespec_get`, `clock_gettime` return junk values. No problem on...

bug

I found (what look to me like) a couple of probable (copy-paste) errors in lodepng_unittest.cpp. https://github.com/lvandeve/lodepng/blob/939fbb98abf96b762b60c2fc3a7292ce39ef8e14/lodepng_unittest.cpp#L979-L981 I think this should probably be: ```C++ image.data[w * 4 * y + 4...

PNG chunks `mDCv` & `cLLi` were renamed to `mDCV` & `cLLI` according to this statement in the latest PNG standard . The simple fix is to globally replace all occurrences...