You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plumb uint64_t support all the way through the SDK
- When a uint64_t is serialized, it is bitwise & with INT64_MAX first to
avoid overflowing the integer. In order to do that comparison at
serialization time, the uint64_t needs to be stored as a uint64_t all
the way through the python bindings into the any mapping.
- the next step is to move the & operation up into the python bindings
and prevent people from storing invalid numbers in OTIO files.
0 commit comments