mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 01:07:42 +00:00
made methods public
This commit is contained in:
parent
f8c92f48ab
commit
706953e4e9
@ -61,7 +61,7 @@ public class VideoSnapShotWorker extends SwingWorker<Void, Void>{
|
|||||||
* @param abstractFile The path to the existing video.
|
* @param abstractFile The path to the existing video.
|
||||||
* @param outputFile The output path of the snapshot video.
|
* @param outputFile The output path of the snapshot video.
|
||||||
*/
|
*/
|
||||||
VideoSnapShotWorker(AbstractFile abstractFile, File outputFile) {
|
public VideoSnapShotWorker(AbstractFile abstractFile, File outputFile) {
|
||||||
this(abstractFile, outputFile, DEFAULT_TOTAL_FRAMES, DEFAULT_SCALE, DEFAULT_FRAMES_PER_SECOND);
|
this(abstractFile, outputFile, DEFAULT_TOTAL_FRAMES, DEFAULT_SCALE, DEFAULT_FRAMES_PER_SECOND);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ public class VideoSnapShotWorker extends SwingWorker<Void, Void>{
|
|||||||
this.framesPerSecond = framesPerSecond;
|
this.framesPerSecond = framesPerSecond;
|
||||||
}
|
}
|
||||||
|
|
||||||
static boolean isSupported(AbstractFile file) {
|
public static boolean isSupported(AbstractFile file) {
|
||||||
return isVideoThumbnailSupported(file);
|
return isVideoThumbnailSupported(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user