Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Minor <joshm@pixar.com>
  • Loading branch information
jminor committed Dec 13, 2024
1 parent 2ec5330 commit 930e6ad
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/otio_aaf_adapter/adapters/advanced_authoring_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -1013,27 +1013,27 @@ def _transcribe_linear_timewarp(item, parameters):

# There may also be keyframes on the speed graph or position graph.
# Time warps with speed graph keyframes have these:
# ConstantValue:
# SpeedRatio
# AvidMotionPulldown
# AvidMotionInputFormat
# AvidMotionOutputFormat
# VaryingValue:
# PARAM_SPEED_MAP_U
# PARAM_SPEED_OFFSET_MAP_U
# ConstantValue:
# SpeedRatio
# AvidMotionPulldown
# AvidMotionInputFormat
# AvidMotionOutputFormat
# VaryingValue:
# PARAM_SPEED_MAP_U
# PARAM_SPEED_OFFSET_MAP_U
# Time warps with position graph keyframes have these:
# ConstantValue:
# SpeedRatio
# AvidMotionPulldown
# AvidPhase
# AvidMotionInputFormat
# AvidMotionOutputFormat
# VaryingValue:
# PARAM_OFFSET_MAP_U
# ConstantValue:
# SpeedRatio
# AvidMotionPulldown
# AvidPhase
# AvidMotionInputFormat
# AvidMotionOutputFormat
# VaryingValue:
# PARAM_OFFSET_MAP_U
# Do any time warps *not* have SpeedRatio?
speed_offset_map = _get_parameter(item, 'PARAM_SPEED_OFFSET_MAP_U')
speed_map = _get_parameter(item, 'PARAM_SPEED_MAP_U')
offset_map = _get_parameter(item, 'PARAM_OFFSET_MAP_U')
#speed_map = _get_parameter(item, 'PARAM_SPEED_MAP_U')
#offset_map = _get_parameter(item, 'PARAM_OFFSET_MAP_U')
# TODO: We should also check the PARAM_OFFSET_MAP_U which has
# an interpolation_def().name as well.

Expand Down

0 comments on commit 930e6ad

Please sign in to comment.