4dc4b19ddb
GitOrigin-RevId: 1e13be30e2c6838d4a2ff768a39c414bc80534bb
15 lines
366 B
Protocol Buffer
15 lines
366 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
// TODO: Switch to package mediapipe.
|
|
package mediapipe;
|
|
|
|
// Contains the packet frequency information.
|
|
message PacketFrequency {
|
|
// Packet frequency (packets per second).
|
|
optional double packet_frequency_hz = 1;
|
|
|
|
// A label that identifies what this packet frequency is for. Eg. "Gaze",
|
|
// "Gesture", etc.
|
|
optional string label = 2;
|
|
}
|