diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-29 14:16:56 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-02-15 03:16:16 +0100 |
| commit | 42a6003535d3153224da33b973bb79662d296e02 (patch) | |
| tree | f17b37e110fbd93355c21515614d9ecad5364fdf /src/lib/piece.h | |
| parent | a632e34e3c9ca94574fcab1b3006227ed2833766 (diff) | |
Basic handling of overlapping video (#1848).
Diffstat (limited to 'src/lib/piece.h')
| -rw-r--r-- | src/lib/piece.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/piece.h b/src/lib/piece.h index a2e62d366..688242c06 100644 --- a/src/lib/piece.h +++ b/src/lib/piece.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -18,15 +18,20 @@ */ + #ifndef DCPOMATIC_PIECE_H #define DCPOMATIC_PIECE_H -#include "types.h" + +#include "dcpomatic_time.h" #include "frame_rate_change.h" +#include "types.h" + class Content; class Decoder; + class Piece { public: @@ -39,8 +44,10 @@ public: std::shared_ptr<Content> content; std::shared_ptr<Decoder> decoder; + boost::optional<dcpomatic::DCPTimePeriod> ignore_video; FrameRateChange frc; bool done; }; + #endif |
