From 75df3c71397ffdd61568b19157d327284c6d3a7f Mon Sep 17 00:00:00 2001 From: Hirokazu Honda Date: Tue, 31 Aug 2021 06:02:24 +0900 Subject: libcamera: mapped_framebuffer: Rename maps() to planes() MappedFrameBuffer::maps() returns planes_. This renames the function name to planes(). Signed-off-by: Hirokazu Honda Reviewed-by: Laurent Pinchart Reviewed-by: Jacopo Mondi Signed-off-by: Laurent Pinchart --- src/ipa/ipu3/ipu3.cpp | 4 ++-- src/ipa/raspberrypi/raspberrypi.cpp | 4 ++-- src/ipa/rkisp1/rkisp1.cpp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/ipa') diff --git a/src/ipa/ipu3/ipu3.cpp b/src/ipa/ipu3/ipu3.cpp index 0ed0a6f1..c925cf64 100644 --- a/src/ipa/ipu3/ipu3.cpp +++ b/src/ipa/ipu3/ipu3.cpp @@ -422,7 +422,7 @@ void IPAIPU3::processEvent(const IPU3Event &event) return; } - Span mem = it->second.maps()[0]; + Span mem = it->second.planes()[0]; const ipu3_uapi_stats_3a *stats = reinterpret_cast(mem.data()); @@ -436,7 +436,7 @@ void IPAIPU3::processEvent(const IPU3Event &event) return; } - Span mem = it->second.maps()[0]; + Span mem = it->second.planes()[0]; ipu3_uapi_params *params = reinterpret_cast(mem.data()); diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp index 7215b205..047123ab 100644 --- a/src/ipa/raspberrypi/raspberrypi.cpp +++ b/src/ipa/raspberrypi/raspberrypi.cpp @@ -936,7 +936,7 @@ void IPARPi::prepareISP(const ipa::RPi::ISPConfig &data) */ auto it = buffers_.find(data.embeddedBufferId); ASSERT(it != buffers_.end()); - embeddedBuffer = it->second.maps()[0]; + embeddedBuffer = it->second.planes()[0]; } /* @@ -1043,7 +1043,7 @@ void IPARPi::processStats(unsigned int bufferId) return; } - Span mem = it->second.maps()[0]; + Span mem = it->second.planes()[0]; bcm2835_isp_stats *stats = reinterpret_cast(mem.data()); RPiController::StatisticsPtr statistics = std::make_shared(*stats); helper_->Process(statistics, rpiMetadata_); diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp index 046816e0..bf2c13b6 100644 --- a/src/ipa/rkisp1/rkisp1.cpp +++ b/src/ipa/rkisp1/rkisp1.cpp @@ -192,7 +192,7 @@ void IPARkISP1::processEvent(const RkISP1Event &event) const rkisp1_stat_buffer *stats = reinterpret_cast( - mappedBuffers_.at(bufferId).maps()[0].data()); + mappedBuffers_.at(bufferId).planes()[0].data()); updateStatistics(frame, stats); break; @@ -203,7 +203,7 @@ void IPARkISP1::processEvent(const RkISP1Event &event) rkisp1_params_cfg *params = reinterpret_cast( - mappedBuffers_.at(bufferId).maps()[0].data()); + mappedBuffers_.at(bufferId).planes()[0].data()); queueRequest(frame, params, event.controls); break; -- cgit v1.2.1