diff options
author | 2022-07-15 11:27:37 -0700 | |
---|---|---|
committer | 2022-10-20 17:39:22 -0700 | |
commit | f665d50639cd8dafafe0d2a6784595768755bcc1 (patch) | |
tree | e4ceafc66011f1417ad74357b42e3033fb731b4f /proto/src | |
parent | 447182b2c9add883445ffd9d57ef79aed1e6bff4 (diff) |
Create API for reporting color space support to Camera2 framework consumers.
Test: Ran CtsCameraTestCases
Test: Ran new VTS test for color space reporting
Test: Created app to test display P3 camera, switching between color spaces
Bug: 238359088
Change-Id: I5c74ea438970cbe55f93b925a6744f4343bc545a
Diffstat (limited to 'proto/src')
-rw-r--r-- | proto/src/camera.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/proto/src/camera.proto b/proto/src/camera.proto index 38d74e4a73ce..205e806f534d 100644 --- a/proto/src/camera.proto +++ b/proto/src/camera.proto @@ -67,4 +67,6 @@ message CameraStreamProto { optional int64 dynamic_range_profile = 14; // The stream use case optional int64 stream_use_case = 15; + // The color space of the stream + optional int32 color_space = 16; } |