Skip to content

Commit

Permalink
[changeFps] Fix changeFps gototime
Browse files Browse the repository at this point in the history
  • Loading branch information
mean committed Jan 11, 2017
1 parent 98a9469 commit 2b6dd15
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions avidemux_plugins/ADM_videoFilters6/changeFps/changeFps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ bool changeFps::goToTime(uint64_t usSeek)
timing/=configuration.newFpsDen;
timing*=configuration.newFpsNum;
timing*=configuration.oldFpsDen;
if(false==ADM_coreVideoFilter::goToTime((uint64_t)timing)) return false;
return true;
return previousFilter->goToTime((uint64_t)timing);
}

/**
Expand Down

0 comments on commit 2b6dd15

Please sign in to comment.