diff --git a/mobile/lib/utils/exif_util.dart b/mobile/lib/utils/exif_util.dart index 1febb9bb0c..3ab9b6e443 100644 --- a/mobile/lib/utils/exif_util.dart +++ b/mobile/lib/utils/exif_util.dart @@ -57,19 +57,6 @@ Future?> getExifFromSourceFile(File originFile) async { } } -Future getVideoPropsAsyncV2(File originalFile) async { - return Computer.shared().compute( - getVideoPropsComputer, - param: {"file": originalFile}, - taskName: "getVideoPropsAsyncV2", - ); -} - -Future getVideoPropsComputer(Map args) { - final File originalFile = args["file"]; - return getVideoPropsAsync(originalFile); -} - Future> getXmp(File file) async { return Computer.shared().compute( _getXMPComputer,