Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da6665cb authored by Eino-Ville Talvala's avatar Eino-Ville Talvala Committed by Android (Google) Code Review
Browse files

Camera2: Basic ZSL and precapture trigger support.

- Add capture sequencer to control still image capture process
- Use precapture trigger for standard capture in sequencer
- Add infrastructure for reprocessing streams
- Add ZSL processor to maintain ZSL queue
- Add ZSL capture sequence to sequencer

This patch sets up ZSL mode and precapture triggers.

For now, to enable zsl mode, set the system property camera.zsl_mode
to 1.

Bug: 6243944

Change-Id: Icf8cb1a83a7c11a152a11007c8f3c54f8ea1c70c
parent 49c74da1
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -14,8 +14,10 @@ LOCAL_SRC_FILES:= \
    camera2/CameraMetadata.cpp \
    camera2/CameraMetadata.cpp \
    camera2/Parameters.cpp \
    camera2/Parameters.cpp \
    camera2/FrameProcessor.cpp \
    camera2/FrameProcessor.cpp \
    camera2/CaptureProcessor.cpp \
    camera2/JpegProcessor.cpp \
    camera2/CallbackProcessor.cpp
    camera2/CallbackProcessor.cpp \
    camera2/ZslProcessor.cpp \
    camera2/CaptureSequencer.cpp \


LOCAL_SHARED_LIBRARIES:= \
LOCAL_SHARED_LIBRARIES:= \
    libui \
    libui \
+124 −414

File changed.

Preview size limit exceeded, changes collapsed.

+21 −17

File changed.

Preview size limit exceeded, changes collapsed.

+283 −1

File changed.

Preview size limit exceeded, changes collapsed.

+107 −0

File changed.

Preview size limit exceeded, changes collapsed.

Loading