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

Commit 858a0329 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "camera/device/3.2: Add custom vendor operating modes"

parents d5c63c87 6d1dcd30
Loading
Loading
Loading
Loading
+14 −1
Original line number Diff line number Diff line
@@ -161,8 +161,21 @@ enum StreamConfigurationMode : uint32_t {
     * CONSTRAINED_HIGH_SPEED_VIDEO in the android.request.availableCapabilities
     * static metadata.
     */
    CONSTRAINED_HIGH_SPEED_MODE = 1
    CONSTRAINED_HIGH_SPEED_MODE = 1,

    /**
     * A set of vendor-defined operating modes, for custom default camera
     * application features that can't be implemented in the fully flexible fashion
     * required for NORMAL_MODE.
     */
    VENDOR_MODE_0 = 0x8000,
    VENDOR_MODE_1,
    VENDOR_MODE_2,
    VENDOR_MODE_3,
    VENDOR_MODE_4,
    VENDOR_MODE_5,
    VENDOR_MODE_6,
    VENDOR_MODE_7
};

/**