mirror of
https://github.com/LuanRT/googlevideo.git
synced 2026-06-19 11:41:17 +00:00
9 lines
170 B
Protocol Buffer
9 lines
170 B
Protocol Buffer
syntax = "proto2";
|
|
package video_streaming;
|
|
|
|
message TimeRange {
|
|
optional int64 start_ticks = 1;
|
|
optional int64 duration_ticks = 2;
|
|
optional int32 timescale = 3;
|
|
}
|