Improve attribute processor

This commit is contained in:
RatzzFatzz
2025-12-11 01:25:08 +01:00
parent 0b61deccbf
commit 04722d9279
8 changed files with 79 additions and 69 deletions

View File

@@ -52,8 +52,8 @@ public class Main implements Runnable {
InputConfig.setInstance(config);
AttributeUpdaterKernel kernel = InputConfig.getInstance().getCoherent() != null
? new CoherentAttributeUpdaterKernel(new CachedMkvFileProcessor())
: new DefaultAttributeUpdaterKernel(new CachedMkvFileProcessor());
? new CoherentAttributeUpdaterKernel(config, new CachedMkvFileProcessor())
: new DefaultAttributeUpdaterKernel(config, new CachedMkvFileProcessor());
kernel.execute();
}
}