1syntax = "proto2"; 2 3package android.automotive.computepipe.proto; 4import "packages/services/Car/cpp/computepipe/proto/OutputConfig.proto"; 5 6message NativeHandles { 7 // File descriptors 8 repeated int32 fds = 1; 9 10 // Corresponding indexes. 11 repeated int32 ix = 2; 12} 13 14message PacketDescriptor { 15 optional int32 buffer_id = 1; 16 17 optional NativeHandles native_handles = 2; 18 19 // Timestamp value is milliseconds since epoch. 20 optional int64 timestamp_ms = 3; 21 22 optional PacketType packet_type = 4; 23} 24