Skip to content

Commit

Permalink
Revert "fix motion tracking regression on SmoothNaturalInterpolation"
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Nov 29, 2023
1 parent 86a9feb commit 24c9751
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/models/motiontrackermodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,7 @@ QList<MotionTrackerModel::TrackingItem> MotionTrackerModel::trackingData(const Q
Mlt::Properties props;

for (const auto &i : l) {
auto pair = i.split("$=");
if (pair.size() == 1)
pair = i.split("~="); // legacy tracking data
auto pair = i.split("~=");
if (pair.size() == 2) {
auto frame = pair.at(0).toInt(&ok);
props.set("", pair.at(1).toLatin1().constData());
Expand Down

0 comments on commit 24c9751

Please sign in to comment.