Renamed VfrDedupe.cs -> FrameTiming.cs

This commit is contained in:
N00MKRAD 2020-12-10 16:16:38 +01:00
parent 57195ebf71
commit f08f396486
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ using System.Threading.Tasks;
namespace Flowframes.Main
{
class VfrDedupe
class FrameTiming
{
public static async Task CreateTimecodeFiles(string framesPath, bool loopEnabled, int times, bool noTimestamps)
{

View File

@ -164,7 +164,7 @@ namespace Flowframes
if (canceled) return;
bool useTimestamps = Config.GetInt("timingMode") == 1; // TODO: Auto-Disable timestamps if input frames are sequential, not timestamped
await VfrDedupe.CreateTimecodeFiles(currentFramesPath, Config.GetBool("enableLoop"), lastInterpFactor, !useTimestamps);
await FrameTiming.CreateTimecodeFiles(currentFramesPath, Config.GetBool("enableLoop"), lastInterpFactor, !useTimestamps);
if (canceled) return;