OpenShot Library | libopenshot  0.5.0
Timeline.h
Go to the documentation of this file.
1 
9 // Copyright (c) 2008-2019 OpenShot Studios, LLC
10 //
11 // SPDX-License-Identifier: LGPL-3.0-or-later
12 
13 #ifndef OPENSHOT_TIMELINE_H
14 #define OPENSHOT_TIMELINE_H
15 
16 #include <list>
17 #include <memory>
18 #include <set>
19 #include <atomic>
20 #include <cstdint>
21 
22 #include "TimelineBase.h"
23 #include "ReaderBase.h"
24 
25 #include "Color.h"
26 #include "Clip.h"
27 #include "EffectBase.h"
28 #include "Fraction.h"
29 #include "Frame.h"
30 #include "KeyFrame.h"
31 #ifdef USE_OPENCV
32 #include "TrackedObjectBBox.h"
33 #endif
34 #include "TrackedObjectBase.h"
35 
36 
37 
38 namespace openshot {
39 
40  // Forward decls
41  class FrameMapper;
42  class CacheBase;
43 
47  struct CompareClips {
48  bool operator()(openshot::Clip* lhs, openshot::Clip* rhs) const {
49  // Strict-weak ordering (no <=) to keep sort well-defined
50  if (lhs == rhs) return false; // irreflexive
51  if (lhs->Layer() != rhs->Layer())
52  return lhs->Layer() < rhs->Layer();
53  if (lhs->Position() != rhs->Position())
54  return lhs->Position() < rhs->Position();
55  // Stable tie-breaker on address to avoid equivalence when layer/position match
56  return std::less<openshot::Clip*>()(lhs, rhs);
57  }
58  };
59 
65  if( lhs->Layer() < rhs->Layer() ) return true;
66  if( lhs->Layer() == rhs->Layer() && lhs->Position() < rhs->Position() ) return true;
67  if( lhs->Layer() == rhs->Layer() && lhs->Position() == rhs->Position() && lhs->Order() > rhs->Order() ) return true;
68  return false;
69  }};
70 
74  bool operator()(const openshot::Clip* lhs, const openshot::Clip* rhs) {
75  return (lhs->Position() + lhs->Duration()) < (rhs->Position() + rhs->Duration());
76  }};
77 
80  bool operator()(const openshot::EffectBase* lhs, const openshot::EffectBase* rhs) {
81  return (lhs->Position() + lhs->Duration()) < (rhs->Position() + rhs->Duration());
82  }};
83 
153  private:
154  bool is_open;
155  bool auto_map_clips;
156  std::list<openshot::Clip*> clips;
157  std::list<openshot::Clip*> closing_clips;
158  std::map<openshot::Clip*, openshot::Clip*> open_clips;
159  std::set<openshot::Clip*> allocated_clips;
160  std::list<openshot::EffectBase*> effects;
161  std::set<openshot::EffectBase*> allocated_effects;
162  openshot::CacheBase *final_cache;
163  std::set<openshot::FrameMapper*> allocated_frame_mappers;
164  bool managed_cache;
165  std::string path;
166  double max_time;
167  double min_time;
168  std::atomic<uint64_t> cache_epoch;
169  std::atomic<int> safe_edit_frames_remaining;
170 
171  std::map<std::string, std::shared_ptr<openshot::TrackedObjectBase>> tracked_objects;
172 
174  void add_layer(std::shared_ptr<openshot::Frame> new_frame, openshot::Clip* source_clip, int64_t clip_frame_number, bool is_top_clip, bool force_safe_composite, float max_volume);
175 
177  void apply_mapper_to_clip(openshot::Clip* clip);
178 
179  // Apply JSON Diffs to various objects contained in this timeline
180  void apply_json_to_clips(Json::Value change);
181  void apply_json_to_effects(Json::Value change);
182  void apply_json_to_effects(Json::Value change, openshot::EffectBase* existing_effect);
183  void apply_json_to_timeline(Json::Value change);
184 
186  void calculate_max_duration();
187 
189  double calculate_time(int64_t number, openshot::Fraction rate);
190 
197  std::vector<openshot::Clip*> find_intersecting_clips(int64_t requested_frame, int number_of_frames, bool include);
198 
200  std::shared_ptr<openshot::Frame> GetOrCreateFrame(std::shared_ptr<Frame> background_frame, openshot::Clip* clip, int64_t number, openshot::TimelineInfoStruct* options);
201 
203  bool isEqual(double a, double b);
204 
206  void sort_clips();
207 
209  void sort_effects();
210 
212  void update_open_clips(openshot::Clip *clip, bool does_clip_intersect);
213 
215  void BumpCacheEpoch();
216 
217  public:
218 
226  Timeline(int width, int height, openshot::Fraction fps, int sample_rate, int channels, openshot::ChannelLayout channel_layout);
227 
231 
239  Timeline(const std::string& projectPath, bool convert_absolute_paths);
240 
241  virtual ~Timeline();
242 
244  void AddTrackedObject(std::shared_ptr<openshot::TrackedObjectBase> trackedObject);
246  std::shared_ptr<openshot::TrackedObjectBase> GetTrackedObject(std::string id) const;
248  std::list<std::string> GetTrackedObjectsIds() const;
250  #ifdef USE_OPENCV
251  std::string GetTrackedObjectValues(std::string id, int64_t frame_number) const;
252  #endif
253 
256  void AddClip(openshot::Clip* clip);
257 
260  void AddEffect(openshot::EffectBase* effect);
261 
263  std::shared_ptr<openshot::Frame> apply_effects(std::shared_ptr<openshot::Frame> frame, int64_t timeline_frame_number, int layer, TimelineInfoStruct* options);
264 
266  void ApplyMapperToClips();
267 
269  bool AutoMapClips() { return auto_map_clips; };
270 
272  void AutoMapClips(bool auto_map) { auto_map_clips = auto_map; };
273 
275  void Clear();
276 
279  void ClearAllCache(bool deep=false);
280 
282  std::list<openshot::Clip*> Clips() override { return clips; };
283 
285  openshot::Clip* GetClip(const std::string& id);
286 
288  openshot::EffectBase* GetClipEffect(const std::string& id);
289 
291  openshot::EffectBase* GetEffect(const std::string& id);
292 
294  double GetMaxTime();
296  int64_t GetMaxFrame();
297 
299  double GetMinTime();
301  int64_t GetMinFrame();
302 
304  void Close() override;
305 
307  std::list<openshot::EffectBase*> Effects() { return effects; };
308 
310  std::list<openshot::EffectBase*> ClipEffects() const;
311 
313  openshot::CacheBase* GetCache() override { return final_cache; };
314 
317  void SetCache(openshot::CacheBase* new_cache);
318 
320  uint64_t CacheEpoch() const { return cache_epoch.load(std::memory_order_relaxed); };
321  int SafeEditFramesRemaining() const { return safe_edit_frames_remaining.load(std::memory_order_relaxed); };
322 
327  std::shared_ptr<openshot::Frame> GetFrame(int64_t requested_frame) override;
328 
329  // Curves for the viewport
333 
334  // Background color
336 
338  bool IsOpen() override { return is_open; };
339 
341  std::string Name() override { return "Timeline"; };
342 
343  // Get and Set JSON methods
344  std::string Json() const override;
345  void SetJson(const std::string value) override;
346  Json::Value JsonValue() const override;
347  void SetJsonValue(const Json::Value root) override;
348 
351  void SetMaxSize(int width, int height);
352 
357  void ApplyJsonDiff(std::string value);
358 
360  void Open() override;
361 
365 
368  void RemoveEffect(openshot::EffectBase* effect);
369 
372  void SortTimeline() { sort_clips(); sort_effects(); }
373  };
374 
375 }
376 
377 #endif // OPENSHOT_TIMELINE_H
openshot::Timeline::RemoveClip
void RemoveClip(openshot::Clip *clip)
Remove an openshot::Clip from the timeline.
Definition: Timeline.cpp:398
openshot::CompareClipEndFrames::operator()
bool operator()(const openshot::Clip *lhs, const openshot::Clip *rhs)
Definition: Timeline.h:74
TimelineBase.h
Header file for Timeline class.
openshot::Timeline::GetFrame
std::shared_ptr< openshot::Frame > GetFrame(int64_t requested_frame) override
Definition: Timeline.cpp:942
openshot::EffectBase
This abstract class is the base class, used by all effects in libopenshot.
Definition: EffectBase.h:56
openshot::Timeline::~Timeline
virtual ~Timeline()
Definition: Timeline.cpp:211
openshot::Timeline::viewport_x
openshot::Keyframe viewport_x
Curve representing the x coordinate for the viewport.
Definition: Timeline.h:331
openshot::CompareClipEndFrames
Definition: Timeline.h:73
openshot::Timeline::SetMaxSize
void SetMaxSize(int width, int height)
Definition: Timeline.cpp:1819
Clip.h
Header file for Clip class.
Fraction.h
Header file for Fraction class.
openshot::CompareEffectEndFrames::operator()
bool operator()(const openshot::EffectBase *lhs, const openshot::EffectBase *rhs)
Definition: Timeline.h:80
openshot::Timeline::Clips
std::list< openshot::Clip * > Clips() override
Return a list of clips on the timeline.
Definition: Timeline.h:282
openshot
This namespace is the default namespace for all code in the openshot library.
Definition: Compressor.h:28
openshot::Timeline::ApplyJsonDiff
void ApplyJsonDiff(std::string value)
Apply a special formatted JSON object, which represents a change to the timeline (add,...
Definition: Timeline.cpp:1364
openshot::Clip
This class represents a clip (used to arrange readers on the timeline)
Definition: Clip.h:89
openshot::Fraction
This class represents a fraction.
Definition: Fraction.h:30
openshot::ReaderBase::info
openshot::ReaderInfo info
Information about the current media file.
Definition: ReaderBase.h:88
openshot::Timeline::GetMinFrame
int64_t GetMinFrame()
Look up the start frame number of the first element on the timeline (first frame is 1)
Definition: Timeline.cpp:486
openshot::Timeline::ClearAllCache
void ClearAllCache(bool deep=false)
Definition: Timeline.cpp:1778
openshot::Timeline::GetTrackedObjectsIds
std::list< std::string > GetTrackedObjectsIds() const
Return the ID's of the tracked objects as a list of strings.
Definition: Timeline.cpp:263
openshot::CompareEffectEndFrames
Like CompareClipEndFrames, but for effects.
Definition: Timeline.h:79
EffectBase.h
Header file for EffectBase class.
openshot::ClipBase::Position
void Position(float value)
Set the Id of this clip object
Definition: ClipBase.cpp:19
KeyFrame.h
Header file for the Keyframe class.
openshot::Timeline::SafeEditFramesRemaining
int SafeEditFramesRemaining() const
Definition: Timeline.h:321
openshot::CacheBase
All cache managers in libopenshot are based on this CacheBase class.
Definition: CacheBase.h:34
openshot::Timeline::apply_effects
std::shared_ptr< openshot::Frame > apply_effects(std::shared_ptr< openshot::Frame > frame, int64_t timeline_frame_number, int layer, TimelineInfoStruct *options)
Apply global/timeline effects to the source frame (if any)
Definition: Timeline.cpp:550
openshot::ReaderBase::clip
openshot::ClipBase * clip
Pointer to the parent clip instance (if any)
Definition: ReaderBase.h:80
openshot::Color
This class represents a color (used on the timeline and clips)
Definition: Color.h:27
openshot::Timeline::GetCache
openshot::CacheBase * GetCache() override
Get the cache object used by this reader.
Definition: Timeline.h:313
openshot::Timeline::AutoMapClips
void AutoMapClips(bool auto_map)
Automatically map all clips to the timeline's framerate and samplerate.
Definition: Timeline.h:272
openshot::Timeline::GetClip
openshot::Clip * GetClip(const std::string &id)
Look up a single clip by ID.
Definition: Timeline.cpp:417
openshot::Keyframe
A Keyframe is a collection of Point instances, which is used to vary a number or property over time.
Definition: KeyFrame.h:53
openshot::CompareClips::operator()
bool operator()(openshot::Clip *lhs, openshot::Clip *rhs) const
Definition: Timeline.h:48
openshot::Timeline::Open
void Open() override
Open the reader (and start consuming resources)
Definition: Timeline.cpp:930
openshot::Timeline::SetJson
void SetJson(const std::string value) override
Load JSON string into this object.
Definition: Timeline.cpp:1242
openshot::Timeline::GetTrackedObjectValues
std::string GetTrackedObjectValues(std::string id, int64_t frame_number) const
Return the trackedObject's properties as a JSON string.
Definition: Timeline.cpp:279
openshot::Timeline::GetMaxTime
double GetMaxTime()
Look up the end time of the latest timeline element.
Definition: Timeline.cpp:472
openshot::Timeline
This class represents a timeline.
Definition: Timeline.h:152
openshot::Timeline::ClipEffects
std::list< openshot::EffectBase * > ClipEffects() const
Return the list of effects on all clips.
Definition: Timeline.cpp:453
openshot::ReaderInfo
This struct contains info about a media file, such as height, width, frames per second,...
Definition: ReaderBase.h:38
openshot::CompareEffects
Definition: Timeline.h:63
openshot::CompareEffects::operator()
bool operator()(openshot::EffectBase *lhs, openshot::EffectBase *rhs)
Definition: Timeline.h:64
openshot::Timeline::CacheEpoch
uint64_t CacheEpoch() const
Return the current cache invalidation epoch.
Definition: Timeline.h:320
openshot::TimelineInfoStruct
This struct contains info about the current Timeline clip instance.
Definition: TimelineBase.h:32
openshot::Timeline::Clear
void Clear()
Clear all clips, effects, and frame mappers from timeline (and free memory)
Definition: Timeline.cpp:862
openshot::Timeline::Name
std::string Name() override
Return the type name of the class.
Definition: Timeline.h:341
openshot::Timeline::RemoveEffect
void RemoveEffect(openshot::EffectBase *effect)
Remove an effect from the timeline.
Definition: Timeline.cpp:379
Frame.h
Header file for Frame class.
openshot::Timeline::Close
void Close() override
Close the timeline reader (and any resources it was consuming)
Definition: Timeline.cpp:908
openshot::Timeline::AddClip
void AddClip(openshot::Clip *clip)
Add an openshot::Clip to the timeline.
Definition: Timeline.cpp:337
openshot::EffectBase::Order
int Order() const
Get the order that this effect should be executed.
Definition: EffectBase.h:182
openshot::Timeline::AddTrackedObject
void AddTrackedObject(std::shared_ptr< openshot::TrackedObjectBase > trackedObject)
Add to the tracked_objects map a pointer to a tracked object (TrackedObjectBBox)
Definition: Timeline.cpp:228
ReaderBase.h
Header file for ReaderBase class.
openshot::Timeline::SortTimeline
void SortTimeline()
Sort all clips and effects on timeline - which affects the internal order of clips and effects arrays...
Definition: Timeline.h:372
openshot::Timeline::color
openshot::Color color
Background color of timeline canvas.
Definition: Timeline.h:335
openshot::Timeline::GetEffect
openshot::EffectBase * GetEffect(const std::string &id)
Look up a timeline effect by ID.
Definition: Timeline.cpp:429
openshot::CompareClips
Definition: Timeline.h:47
openshot::TimelineBase
This class represents a timeline (used for building generic timeline implementations)
Definition: TimelineBase.h:42
openshot::Timeline::Timeline
Timeline(int width, int height, openshot::Fraction fps, int sample_rate, int channels, openshot::ChannelLayout channel_layout)
Constructor for the timeline (which configures the default frame properties)
Definition: Timeline.cpp:33
openshot::ReaderBase
This abstract class is the base class, used by all readers in libopenshot.
Definition: ReaderBase.h:75
openshot::Timeline::Effects
std::list< openshot::EffectBase * > Effects()
Return the list of effects on the timeline.
Definition: Timeline.h:307
openshot::Timeline::Json
std::string Json() const override
Generate JSON string of this object.
Definition: Timeline.cpp:1201
openshot::Timeline::GetMaxFrame
int64_t GetMaxFrame()
Look up the end frame number of the latest element on the timeline.
Definition: Timeline.cpp:478
openshot::Timeline::IsOpen
bool IsOpen() override
Determine if reader is open or closed.
Definition: Timeline.h:338
openshot::Timeline::AutoMapClips
bool AutoMapClips()
Determine if clips are automatically mapped to the timeline's framerate and samplerate.
Definition: Timeline.h:269
Color.h
Header file for Color class.
openshot::Timeline::SetJsonValue
void SetJsonValue(const Json::Value root) override
Load Json::Value into this object.
Definition: Timeline.cpp:1262
openshot::Timeline::ApplyMapperToClips
void ApplyMapperToClips()
Apply the timeline's framerate and samplerate to all clips.
Definition: Timeline.cpp:526
openshot::Timeline::viewport_y
openshot::Keyframe viewport_y
Curve representing the y coordinate for the viewport.
Definition: Timeline.h:332
openshot::ChannelLayout
ChannelLayout
This enumeration determines the audio channel layout (such as stereo, mono, 5 point surround,...
Definition: ChannelLayouts.h:28
TrackedObjectBBox.h
Header file for the TrackedObjectBBox class.
openshot::Timeline::GetClipEffect
openshot::EffectBase * GetClipEffect(const std::string &id)
Look up a clip effect by ID.
Definition: Timeline.cpp:440
TrackedObjectBase.h
Header file for the TrackedObjectBase class.
openshot::ClipBase::Layer
void Layer(int value)
Set layer of clip on timeline (lower number is covered by higher numbers)
Definition: ClipBase.cpp:31
openshot::Timeline::viewport_scale
openshot::Keyframe viewport_scale
Curve representing the scale of the viewport (0 to 100)
Definition: Timeline.h:330
openshot::Timeline::AddEffect
void AddEffect(openshot::EffectBase *effect)
Add an effect to the timeline.
Definition: Timeline.cpp:363
openshot::Timeline::JsonValue
Json::Value JsonValue() const override
Generate Json::Value for this object.
Definition: Timeline.cpp:1208
openshot::Timeline::GetTrackedObject
std::shared_ptr< openshot::TrackedObjectBase > GetTrackedObject(std::string id) const
Return tracked object pointer by it's id.
Definition: Timeline.cpp:246
openshot::Timeline::GetMinTime
double GetMinTime()
Look up the position/start time of the first timeline element.
Definition: Timeline.cpp:494
openshot::Timeline::SetCache
void SetCache(openshot::CacheBase *new_cache)
Definition: Timeline.cpp:1185