[RFC,v2,09/14] libcamera: software_isp: Remove per-frame params buffers TODO item
diff mbox series

Message ID 20260216203034.27558-10-mzamazal@redhat.com
State New
Headers show
Series
  • Software ISP: Share params and stats buffers
Related show

Commit Message

Milan Zamazal Feb. 16, 2026, 8:30 p.m. UTC
Parameters are stored in per-frame buffers and shared properly now.

Signed-off-by: Milan Zamazal <mzamazal@redhat.com>
---
 src/libcamera/software_isp/TODO | 18 ------------------
 1 file changed, 18 deletions(-)

Patch
diff mbox series

diff --git a/src/libcamera/software_isp/TODO b/src/libcamera/software_isp/TODO
index f19e15ae2..1a71ab8a5 100644
--- a/src/libcamera/software_isp/TODO
+++ b/src/libcamera/software_isp/TODO
@@ -53,24 +53,6 @@  stats in hardware, such as the i.MX7), but please keep it on your radar.
 
 ---
 
-5. Store ISP parameters in per-frame buffers
-
-> /**
->  * \fn void Debayer::process(FrameBuffer *input, FrameBuffer *output, DebayerParams params)
->  * \brief Process the bayer data into the requested format.
->  * \param[in] input The input buffer.
->  * \param[in] output The output buffer.
->  * \param[in] params The parameters to be used in debayering.
->  *
->  * \note DebayerParams is passed by value deliberately so that a copy is passed
->  * when this is run in another thread by invokeMethod().
->  */
-
-Possibly something to address later, by storing ISP parameters in
-per-frame buffers like we do for hardware ISPs.
-
----
-
 8. DebayerCpu cleanups
 
 > >> class DebayerCpu : public Debayer, public Object