libcamera: software_isp: Make isStandardBayerOrder static

Make this member function static so that it may be called from static
members of derived classes.

Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
This commit is contained in:
Bryan O'Donoghue 2025-05-30 11:43:28 +01:00
parent c7346319bd
commit 53930ee1d7

View file

@ -88,7 +88,7 @@ private:
protected: protected:
void setParams(DebayerParams &params); void setParams(DebayerParams &params);
void dmaSyncBegin(std::vector<DmaSyncer> &dmaSyncers, FrameBuffer *input, FrameBuffer *output); void dmaSyncBegin(std::vector<DmaSyncer> &dmaSyncers, FrameBuffer *input, FrameBuffer *output);
bool isStandardBayerOrder(BayerFormat::Order order); static bool isStandardBayerOrder(BayerFormat::Order order);
}; };
} /* namespace libcamera */ } /* namespace libcamera */