]> git.sesse.net Git - nageru/blob - state.proto
Serialize state to disk between runs, using SQLite.
[nageru] / state.proto
1 syntax = "proto3";
2
3 // Corresponds to struct Clip.
4 message ClipProto {
5         int64 pts_in = 1;
6         int64 pts_out = 2;
7         repeated string description = 3;
8         int64 stream_idx = 4;
9 }
10
11 message ClipListProto {
12         repeated ClipProto clip = 1;
13 }
14
15 message StateProto {
16         ClipListProto clip_list = 1;
17         ClipListProto play_list = 2;
18 }