Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editing commands #1651

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 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
76ee1c2
Fixed typo.
ggarra13 Aug 13, 2023
6354228
Added edit_insert() algorithm.
ggarra13 Aug 13, 2023
834133a
test_editAlgorithm fix.
ggarra13 Aug 13, 2023
8fe144b
Squashed commit of the following:
ggarra13 Aug 18, 2023
7701363
Fixed overwrite of one clip's second part's source range start_time().
ggarra13 Aug 19, 2023
3ab0c20
WIP.
ggarra13 Aug 19, 2023
248202d
Typo.
ggarra13 Aug 19, 2023
f2f95c0
WIP.
ggarra13 Aug 19, 2023
2657330
WIP.
ggarra13 Aug 19, 2023
05b9fbb
WIP names.
ggarra13 Aug 19, 2023
ac09dfd
WIP names.
ggarra13 Aug 19, 2023
1e701d3
WIP algo.
ggarra13 Aug 19, 2023
10592c5
Removed renaming of clips.
ggarra13 Aug 19, 2023
234dd5f
Removed debugging.
ggarra13 Aug 19, 2023
0fb805c
Added removing of transitions to overwrite and insert.
ggarra13 Aug 19, 2023
67ae0d8
Added remove_transitions to insert/overwrite.
ggarra13 Aug 19, 2023
2a4a1ab
Added an additional test to overwrite.
ggarra13 Aug 19, 2023
f6cb7c6
Solved some precision issues.
ggarra13 Aug 20, 2023
a423a0a
Added transition support.
ggarra13 Aug 20, 2023
6e2ee6d
Experimental editing commands
ggarra13 Aug 20, 2023
a1f0aaa
Squashed commit of the following:
ggarra13 Aug 20, 2023
a34200d
Squashed commit of the following:
ggarra13 Aug 20, 2023
1731b30
Merge branch 'test_edit_commands' into editing_commands
ggarra13 Aug 20, 2023
d3f6221
More unit tests.
ggarra13 Aug 20, 2023
03895b4
Fixed a precision issue and added more unit tests.
ggarra13 Aug 20, 2023
ea0e841
Switched from using find_children to child_at_time.
ggarra13 Aug 20, 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