Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
bd5b207
Basic bones of pybind11 based version.
Aug 23, 2017
5055377
Add pybind11
Aug 23, 2017
2fc37ce
Add from_timecode and block out timecode tests.
Aug 24, 2017
61f6333
Start TimeRange.
Aug 25, 2017
2be62be
Hashing functions + 40 passing tests.
Aug 25, 2017
17cb2a1
Formatting cleanup.
Aug 26, 2017
a4057a7
Formatting.
Sep 22, 2017
446e706
Raise exception when calling to_timecode.
ssteinbach Aug 28, 2018
232def2
Upgraded to_timecode to better match current python implementation.
ssteinbach Aug 30, 2018
2f2be16
Upgraded tests to latest from main repo.
ssteinbach Aug 30, 2018
39223ad
Match from_timecode to latest.
ssteinbach Aug 30, 2018
943a03c
from_frames now more closely matches python API.
ssteinbach Aug 31, 2018
911f3cb
Add to_time_string function.
ssteinbach Aug 31, 2018
ce7fa1c
Add copy function.
ssteinbach Aug 31, 2018
328e60d
add iadd
ssteinbach Aug 31, 2018
c1ff405
Add almost_equal.
ssteinbach Aug 31, 2018
cd9fbfc
Add debug print utility (to be removed).
ssteinbach Aug 31, 2018
cf3cc3a
Add from_time_string.
ssteinbach Aug 31, 2018
a48b4ac
Fix a bug in to_timecode.
ssteinbach Sep 1, 2018
fa3defd
Remove dead code.
ssteinbach Sep 1, 2018
69c7790
+= returns a reference instead of a copy, improving inner loop perfor…
ssteinbach Sep 1, 2018
2e702b0
Fix bugs in +=.
ssteinbach Sep 1, 2018
16f4dab
Match the str() and repr() behavior.
ssteinbach Sep 1, 2018
af13391
Skipping the clamped unit test for now, since it isn't used in the li…
ssteinbach Sep 1, 2018
7934f6f
Manually round things in to_time_string.
ssteinbach Sep 1, 2018
352b008
Wrap duration as a property to do validation.
ssteinbach Sep 1, 2018
c638c14
Wrap to_frames.
ssteinbach Sep 1, 2018
6cbb4d8
Wrap extended_by.
ssteinbach Sep 1, 2018
6fd596e
Add time transform.
ssteinbach Sep 1, 2018
bf5c8c0
Add a note.
ssteinbach Sep 1, 2018
68416a8
Minor cleanup.
ssteinbach Sep 4, 2018
cd7b2c9
Split out .cpp file.
ssteinbach Sep 5, 2018
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
5 changes: 5 additions & 0 deletions cpp_api/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 2.8.12)
project(opentime)

add_subdirectory(pybind11)
pybind11_add_module(opentime opentime.cpp py_opentime.cpp)
Loading