blob: 14d130d1ccbb02e6894d1a6b6ace56bb91317195 [file] [log] [blame]
syntax = "proto2";
package android.automotive.computepipe.proto;
import "packages/services/Car/computepipe/proto/InputConfig.proto";
import "packages/services/Car/computepipe/proto/OffloadConfig.proto";
import "packages/services/Car/computepipe/proto/OutputConfig.proto";
import "packages/services/Car/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;
}