-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lingyunxiao2
committed
Mar 9, 2022
1 parent
b83c9ee
commit b830828
Showing
10 changed files
with
117 additions
and
40 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...ain/java/com/lingyunxiao/gifski/MLog.java → ...a/com/hzy/face/morphme/activity/MLog.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.lingyunxiao.gifski; | ||
package com.hzy.face.morphme.activity; | ||
|
||
import android.util.Log; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.lingyunxiao.gifski; | ||
|
||
public interface ILogger { | ||
void logit(String msg); | ||
|
||
void logit(String msg, boolean arg); | ||
|
||
void logit(String msg, int arg); | ||
} |
6 changes: 6 additions & 0 deletions
6
gifski/src/main/java/com/lingyunxiao/gifski/InstanceKeeper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.lingyunxiao.gifski; | ||
|
||
public class InstanceKeeper { | ||
public static ILogger logger; | ||
public static ProgressCallback progressCallback; | ||
} |
8 changes: 8 additions & 0 deletions
8
gifski/src/main/java/com/lingyunxiao/gifski/ProgressCallback.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.lingyunxiao.gifski; | ||
|
||
public interface ProgressCallback { | ||
/** | ||
* @param frameNumber start from 1 | ||
*/ | ||
void onFrameWrited(int frameNumber, int taskKey); | ||
} |