You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
892 B

syntax = "proto2";
package android.automotive.computepipe.proto;
import "packages/services/Car/cpp/computepipe/proto/InputConfig.proto";
import "packages/services/Car/cpp/computepipe/proto/OffloadConfig.proto";
import "packages/services/Car/cpp/computepipe/proto/OutputConfig.proto";
import "packages/services/Car/cpp/computepipe/proto/TerminationConfig.proto";
message Options {
/**
* input configurations supported by the graph
*/
repeated InputConfig input_configs = 1;
/**
* Offload options supported by the graph
*/
repeated OffloadConfig offload_configs = 2;
/**
* Termination options supported by the graph
*/
repeated TerminationConfig termination_configs = 3;
/**
* Output streams supported by the graph.
*/
repeated OutputConfig output_configs = 4;
/**
* Name of the computer vision graph.
*/
optional string graph_name = 5;
}