summaryrefslogtreecommitdiff
path: root/test/libtest/camera_test.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2024-06-24 17:03:26 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2024-06-26 12:07:11 +0300
commit6fc5f90f1635b635788bb16080f21c736d1bb359 (patch)
treea6fa0208d20414e311ec3077c7d15e4227676f6f /test/libtest/camera_test.cpp
parent7817f9e0cf2fa5f2bf9a1938832600fa95bdeda7 (diff)
test: gstreamer: Include missing sanitizer/asan_interface.h header
The GStreamer tests define a __asan_default_options() function to influence the behaviour of ASan. The function is declared in sanitizer/asan_interface.h, but we don't include the header. This will cause missing declaration warnings when we enable the -Wmissing-declarations option. Include the header to fix the issue. It can't be done unconditionally as not all toolchains provide ASan, so check for its availability at configuration time. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test/libtest/camera_test.cpp')
0 files changed, 0 insertions, 0 deletions
pan> i++) cumulative_.push_back(cumulative_.back() + histogram[i]); } uint32_t Bins() const { return cumulative_.size() - 1; } uint64_t Total() const { return cumulative_[cumulative_.size() - 1]; } // Cumulative frequency up to a (fractional) point in a bin. uint64_t CumulativeFreq(double bin) const; // Return the (fractional) bin of the point q (0 <= q <= 1) through the // histogram. Optionally provide limits to help. double Quantile(double q, int first = -1, int last = -1) const; // Return the average histogram bin value between the two quantiles. double InterQuantileMean(double q_lo, double q_hi) const; private: std::vector<uint64_t> cumulative_; }; } // namespace RPiController