15 lines
173 B
Protocol Buffer
15 lines
173 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Video {
|
|
string id = 1;
|
|
}
|
|
|
|
message HeaderInfo {
|
|
Video video = 1;
|
|
}
|
|
|
|
message Header {
|
|
HeaderInfo info = 1;
|
|
int32 terminator = 4;
|
|
}
|