[mob] Remove unused method

This commit is contained in:
Neeraj Gupta
2024-10-21 17:13:32 +05:30
parent da7a0a60bf
commit 877820e114

View File

@@ -57,19 +57,6 @@ Future<Map<String, IfdTag>?> getExifFromSourceFile(File originFile) async {
}
}
Future<FFProbeProps?> getVideoPropsAsyncV2(File originalFile) async {
return Computer.shared().compute(
getVideoPropsComputer,
param: {"file": originalFile},
taskName: "getVideoPropsAsyncV2",
);
}
Future<FFProbeProps?> getVideoPropsComputer(Map<String, dynamic> args) {
final File originalFile = args["file"];
return getVideoPropsAsync(originalFile);
}
Future<Map<String, dynamic>> getXmp(File file) async {
return Computer.shared().compute(
_getXMPComputer,