Skip to content

Commit 2e7c1bb

Browse files
Updated assets
1 parent 73d285e commit 2e7c1bb

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

FFmpegAndroid/assets/x86/ffmpeg

0 Bytes
Binary file not shown.

FFmpegAndroid/src/main/java/com/github/hiteshsondhi88/libffmpeg/CpuArch.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import android.text.TextUtils;
44

55
enum CpuArch {
6-
x86("704756b89ba6c7ed5b95758c7064fee2f644be17"),
7-
ARMv7("a25f433a088e197aae10cadd34bcbf2660a45d07"),
8-
ARMv7_NEON("edb801d23dcf6993b3f498a878520c539ea40f30"),
6+
x86("8eb744a10148314e5be8f2b538782a0ce3363fc1"),
7+
ARMv7("1224f5a941482b56c16f89a97b6b79ba0ff03804"),
8+
ARMv7_NEON("b46a0e1145ba7f59d69bb93c0b3348c58c735870"),
99
NONE(null);
1010

1111
private String sha1;
@@ -14,6 +14,10 @@ enum CpuArch {
1414
this.sha1 = sha1;
1515
}
1616

17+
String getSha1(){
18+
return sha1;
19+
}
20+
1721
static CpuArch fromString(String sha1) {
1822
if (!TextUtils.isEmpty(sha1)) {
1923
for (CpuArch cpuArch : CpuArch.values()) {

0 commit comments

Comments
 (0)