Skip to content

Commit daad721

Browse files
alexcohnSasha Cohn
authored andcommitted
remove unnecessary CpuArch
1 parent 4de060f commit daad721

File tree

4 files changed

+0
-43
lines changed

4 files changed

+0
-43
lines changed

android-ffmpeg/src/main/java/nl/bravobit/ffmpeg/CpuArch.java

Lines changed: 0 additions & 5 deletions
This file was deleted.

android-ffmpeg/src/main/java/nl/bravobit/ffmpeg/CpuArchHelper.java

Lines changed: 0 additions & 25 deletions
This file was deleted.

android-ffmpeg/src/main/java/nl/bravobit/ffmpeg/FFmpeg.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,6 @@ public Context provide() {
3535

3636
@Override
3737
public boolean isSupported() {
38-
// check if arch is supported
39-
CpuArch cpuArch = CpuArchHelper.getCpuArch();
40-
if (cpuArch == CpuArch.NONE) {
41-
Log.e("arch not supported");
42-
return false;
43-
}
4438

4539
// get ffmpeg file
4640
File ffmpeg = FileUtils.getFFmpeg(context.provide());

android-ffmpeg/src/main/java/nl/bravobit/ffmpeg/FFprobe.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,6 @@ public Context provide() {
3535

3636
@Override
3737
public boolean isSupported() {
38-
// check if arch is supported
39-
CpuArch cpuArch = CpuArchHelper.getCpuArch();
40-
if (cpuArch == CpuArch.NONE) {
41-
Log.e("arch not supported");
42-
return false;
43-
}
44-
4538
// get ffprobe file
4639
File ffprobe = FileUtils.getFFprobe(context.provide());
4740

0 commit comments

Comments
 (0)