]> git.sesse.net Git - nageru/blobdiff - clip_list.h
Add functionality for scrubbing in/out points in the clip list.
[nageru] / clip_list.h
index 9db4d07bf6ddfc0bca414472a912c88eaf5d8530..076d4930ad718e34ccfd37627720ef305ca001a5 100644 (file)
@@ -11,7 +11,7 @@
 #include "defs.h"
 
 struct Clip {
-       int64_t pts_in = -1, pts_out = -1;
+       int64_t pts_in = -1, pts_out = -1;  // pts_in is inclusive, pts_out is exclusive.
        std::string descriptions[NUM_CAMERAS];
        unsigned stream_idx = 0;  // For the playlist only.
 };