summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2021-10-26ipa: ipu3: tonemapping: Implement configure callJean-Michel Hautbois
2021-10-26ipa: ipu3: tonemapping: Generate the LUT only on gamma changeJean-Michel Hautbois
2021-10-26ipa: ipu3: agc: Document AGC mean-based algorithmJean-Michel Hautbois
2021-10-26ipa: ipu3: awb: Reword accumulator documentationJean-Michel Hautbois
2021-10-26ipa: ipu3: awb: Add AWB class documentationJean-Michel Hautbois
2021-10-26ipa: ipu3: Explicitly use the statistics parameterJean-Michel Hautbois
2021-10-26ipa: ipu3: Document the IPAIPU3 classJean-Michel Hautbois
2021-10-26ipa: ipu3: Document IPAIPU3::configureJean-Michel Hautbois
2021-10-26ipa: ipu3: Document IPAIPU3 class interfaceJean-Michel Hautbois
2021-10-26android: post_processor: Make post processing asyncUmang Jain
2021-10-26android: post_processor: Drop return value for process()Umang Jain
2021-10-26android: Track and notify post processing of streamsUmang Jain
2021-10-26android: post_processor: Consolidate contextual informationUmang Jain
2021-10-26android: camera_device: Refactor descriptor status and sendCaptureResults()Umang Jain
2021-10-26android: post_processor_jpeg: Replace encoder_ nullptr checkUmang Jain
2021-10-26android: camera_stream: Replace post-processor nullptr checkUmang Jain
2021-10-25libcamera: request: Use external CameraControlValidatorKieran Bingham
2021-10-25libcamera: camera: Create a CameraControlValidatorKieran Bingham
2021-10-25libcamera: v4l2_videodevice: Explain multiplanar bytesused reasoningKieran Bingham
2021-10-22ipa: ipu3: Use sensor limits for analogue gainJean-Michel Hautbois
2021-10-22ipa: ipu3: agc: Remove unused variablesJean-Michel Hautbois
2021-10-22ipa: ipu3: agc: Refactor condition on exposure correctionJean-Michel Hautbois
2021-10-22ipa: ipu3: agc: Introduce previous exposure valueJean-Michel Hautbois
2021-10-22ipa: ipu3: agc: Rename gains properlyJean-Michel Hautbois
2021-10-22ipa: ipu3: agc: Simplify division of exposure/gainJean-Michel Hautbois
2021-10-22ipa: ipu3: agc: Use filtered exposure valuesJean-Michel Hautbois
2021-10-22ipa: ipu3: agc: Change analogue gain limitsJean-Michel Hautbois
2021-10-22ipa: ipu3: agc: Change exposure limitsJean-Michel Hautbois
2021-10-22ipa: ipu3: agc: Rename exposure values properlyJean-Michel Hautbois
2021-10-22ipa: ipu3: awb: Change minimal green threshold valueJean-Michel Hautbois
2021-10-22ipa: ipu3: awb: Use saturation under 90%Jean-Michel Hautbois
2021-10-22ipa: ipu3: set frameContext before controlsJean-Michel Hautbois
2021-10-22ipa: ipu3: awb: Set a threshold for the green saturationJean-Michel Hautbois
2021-10-21android: camera_device: Cleanup header includesLaurent Pinchart
2021-10-19android: camera_metadata: Rename get() to getMetadata()Umang Jain
2021-10-19android: camera_stream: Define explicit move constructor and destructorsLaurent Pinchart
2021-10-19android: camera_stream: Don't close fence if wait failsLaurent Pinchart
2021-10-19android: camera_request: Don't embed full camera3_stream_buffer_tLaurent Pinchart
2021-10-19android: camera_device: Use abortRequest() instead of open-coding itLaurent Pinchart
2021-10-19android: camera_stream: Return non-const pointer from camera3Stream()Laurent Pinchart
2021-10-19android: camera_stream: Pass StreamBuffer to process()Laurent Pinchart
2021-10-19android: camera_device: Create struct to track per stream bufferUmang Jain
2021-10-19android: camera_stream: Plumb process() with Camera3RequestDescriptorUmang Jain
2021-10-19android: camera_device: Build capture_result dynamicallyLaurent Pinchart
2021-10-19android: camera_request: Turn struct into a classLaurent Pinchart
2021-10-19camera_device: Remove private scope of Camera3RequestDescriptorUmang Jain
2021-10-19utils: gen-version: Pass the meson source root to the gen-version.sh scriptNaushir Patuck
2021-10-19libcamera: v4l2_videodevice: Improve debugging when buffer is too smallLaurent Pinchart
2021-10-19ipa: ipu3: agc: Remove "using" directive from agc.h headerLaurent Pinchart
2021-10-19ipa: ipu3: awb: Don't pass member variable to member functionLaurent Pinchart
lass="hl com"> * * Free buffers allocated with allocate(). * * This invalidates the buffers returned by buffers(). * * \return 0 on success or a negative error code otherwise * \retval -EACCES The camera is not in a state where buffers can be freed * \retval -EINVAL The allocator do not handle the \a stream */ int FrameBufferAllocator::free(Stream *stream) { auto iter = buffers_.find(stream); if (iter == buffers_.end()) return -EINVAL; std::vector<std::unique_ptr<FrameBuffer>> &buffers = iter->second; buffers.clear(); buffers_.erase(iter); return 0; } /** * \fn FrameBufferAllocator::allocated() * \brief Check if the allocator has allocated buffers for any stream * \return True if the allocator has allocated buffers for one or more * streams, false otherwise */ /** * \brief Retrieve the buffers allocated for a \a stream * \param[in] stream The stream to retrieve buffers for * * This method shall only be called after successfully allocating buffers for * \a stream with allocate(). The returned buffers are valid until free() is * called for the same stream or the FrameBufferAllocator instance is destroyed. * * \return The buffers allocated for the \a stream */ const std::vector<std::unique_ptr<FrameBuffer>> & FrameBufferAllocator::buffers(Stream *stream) const { static const std::vector<std::unique_ptr<FrameBuffer>> empty; auto iter = buffers_.find(stream); if (iter == buffers_.end()) return empty; return iter->second; } } /* namespace libcamera */