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.

18 lines
281 B

syntax = "proto2";
package android.automotive.computepipe.proto;
enum PacketType {
SEMANTIC_DATA = 0;
PIXEL_DATA = 1;
PIXEL_ZERO_COPY_DATA = 2;
}
message OutputConfig {
optional string stream_name = 1;
optional PacketType type = 2;
optional int32 stream_id = 3;
}