Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
1df55fe
Experimental editing commands
darbyjohnston Jan 10, 2023
ae1a8b7
Merge branch 'edit_experiment' of https://github.com/darbyjohnston/Op…
ggarra13 Aug 13, 2023
5938134
Fixed typo.
ggarra13 Aug 13, 2023
e67ba15
Added edit_insert() algorithm.
ggarra13 Aug 13, 2023
70ec873
test_editAlgorithm fix.
ggarra13 Aug 13, 2023
27ea740
Squashed commit of the following:
ggarra13 Aug 18, 2023
9f4ed2b
Fixed overwrite of one clip's second part's source range start_time().
ggarra13 Aug 19, 2023
a84df07
WIP.
ggarra13 Aug 19, 2023
38da939
Typo.
ggarra13 Aug 19, 2023
0af78d7
WIP.
ggarra13 Aug 19, 2023
6ec4d38
WIP.
ggarra13 Aug 19, 2023
6640814
WIP names.
ggarra13 Aug 19, 2023
7ed3090
WIP names.
ggarra13 Aug 19, 2023
cf31e9c
WIP algo.
ggarra13 Aug 19, 2023
35ca1bf
Removed renaming of clips.
ggarra13 Aug 19, 2023
f88ba47
Removed debugging.
ggarra13 Aug 19, 2023
661a844
Added removing of transitions to overwrite and insert.
ggarra13 Aug 19, 2023
ca1996c
Added remove_transitions to insert/overwrite.
ggarra13 Aug 19, 2023
ca23ed7
Added an additional test to overwrite.
ggarra13 Aug 19, 2023
b979a73
Solved some precision issues.
ggarra13 Aug 20, 2023
70ffc51
Added transition support.
ggarra13 Aug 20, 2023
9ce758a
Broken find_children.
ggarra13 Aug 20, 2023
fc46f7e
Add test_find_children.cpp.
ggarra13 Aug 20, 2023
3d32f91
Debug insert.
ggarra13 Aug 20, 2023
1ef8787
Fix.
ggarra13 Aug 20, 2023
f597d4e
WIP wrong insert.
ggarra13 Aug 20, 2023
0e39188
Fixed rounding errors.
ggarra13 Aug 20, 2023
add13d2
Updated test.
ggarra13 Aug 20, 2023
d34f520
WIP.
ggarra13 Aug 20, 2023
d0e18fc
const correctness.
ggarra13 Aug 20, 2023
c8a99b0
Added error printout.
ggarra13 Aug 20, 2023
2167c99
Added rounding to time comparison.
ggarra13 Aug 20, 2023
3d606a5
Added floor, ceil and round to editAlgorithm.cpp.
ggarra13 Aug 20, 2023
c26b050
floor in find_item.
ggarra13 Aug 20, 2023
b6c437b
Fixed algorithm.
ggarra13 Aug 20, 2023
31f1cef
Added a new remove() edit command.
ggarra13 Aug 21, 2023
30b6a94
Reversed remove parameters to be consistant.
ggarra13 Aug 21, 2023
6bc43ad
Fixed documentation for roll.
ggarra13 Sep 4, 2023
e6ebb66
Updated documentation.
ggarra13 Sep 4, 2023
4173cde
Fixed some warnings on Windows and a potential crash on overwrite.
ggarra13 Sep 13, 2023
68b37cf
Fixed a Linux warning.
ggarra13 Sep 14, 2023
9952412
Fixed insert algorithm when splitting a clip with a start_time differ…
ggarra13 Sep 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/opentimelineio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ set(OPENTIMELINEIO_HEADER_FILES
composable.h
composition.h
deserialization.h
algo/editAlgorithm.h
effect.h
errorStatus.h
externalReference.h
Expand Down Expand Up @@ -44,6 +45,7 @@ add_library(opentimelineio ${OTIO_SHARED_OR_STATIC_LIB}
composable.cpp
composition.cpp
deserialization.cpp
algo/editAlgorithm.cpp
effect.cpp
errorStatus.cpp
externalReference.cpp
Expand Down
Loading