libcamera: pipeline: ipu3: Use stream configuration to get buffers count

Access the number of allocated buffer for the streams through the stream
configuration instead of the stream's buffers pool.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Laurent Pinchart
2019-07-12 23:04:54 +03:00
parent 4e79b2ef31
commit 4cb78e712c

View File

@@ -635,7 +635,7 @@ int PipelineHandlerIPU3::allocateBuffers(Camera *camera,
* of buffers as the active ones.
*/
if (!outStream->active_) {
bufferCount = vfStream->bufferPool().count();
bufferCount = vfStream->configuration().bufferCount;
outStream->device_->pool->createBuffers(bufferCount);
ret = imgu->exportBuffers(outStream->device_,
outStream->device_->pool);
@@ -644,7 +644,7 @@ int PipelineHandlerIPU3::allocateBuffers(Camera *camera,
}
if (!vfStream->active_) {
bufferCount = outStream->bufferPool().count();
bufferCount = outStream->configuration().bufferCount;
vfStream->device_->pool->createBuffers(bufferCount);
ret = imgu->exportBuffers(vfStream->device_,
vfStream->device_->pool);