summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/cloud-rain.svg
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2020-10-15 15:10:55 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2020-10-21 16:15:41 +0100
commitd55f6a803727facbd8ae5df6882a4037086614fd (patch)
treec1ef9a7b084bbc21f057d79ff7c1ef82b7eea526 /src/qcam/assets/feathericons/cloud-rain.svg
parent4bd8d15f96173e1025ff03bfc5f05a94bf024270 (diff)
libcamera: pipeline: rpi_stream: Explicitly name requestBuffer
The FrameBuffer used to track any addition to the request in an under-run event was shadowed against the returned buffer, being placed back on the availableBuffers_ queue. Rename the shadowed variable to be more explicit that it is a separate Buffer. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/qcam/assets/feathericons/cloud-rain.svg')
0 files changed, 0 insertions, 0 deletions
="hl kwc">std::string toString() const; }; bool operator==(const Rectangle &lhs, const Rectangle &rhs); static inline bool operator!=(const Rectangle &lhs, const Rectangle &rhs) { return !(lhs == rhs); } struct Size { Size() : Size(0, 0) { } Size(unsigned int w, unsigned int h) : width(w), height(h) { } unsigned int width; unsigned int height; const std::string toString() const; }; bool operator==(const Size &lhs, const Size &rhs); bool operator<(const Size &lhs, const Size &rhs); static inline bool operator!=(const Size &lhs, const Size &rhs) { return !(lhs == rhs); } static inline bool operator<=(const Size &lhs, const Size &rhs) { return lhs < rhs || lhs == rhs; }