[Android] Explicit logs
Geoffrey Métais
git at videolan.org
Wed Mar 4 15:55:32 CET 2015
vlc-ports/android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Wed Mar 4 15:11:37 2015 +0100| [e47e9ace9cbb6c6bc56ccf32ecc5db3e474805dc] | committer: Geoffrey Métais
Explicit logs
> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=e47e9ace9cbb6c6bc56ccf32ecc5db3e474805dc
---
libvlc/src/org/videolan/libvlc/LibVlcUtil.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libvlc/src/org/videolan/libvlc/LibVlcUtil.java b/libvlc/src/org/videolan/libvlc/LibVlcUtil.java
index 2e7111c..9d5d070 100644
--- a/libvlc/src/org/videolan/libvlc/LibVlcUtil.java
+++ b/libvlc/src/org/videolan/libvlc/LibVlcUtil.java
@@ -129,10 +129,10 @@ public class LibVlcUtil {
final boolean elfHasMips = elf.e_machine == EM_MIPS;
final boolean elfIs64bits = elf.is64bits;
- Log.i(TAG, "machine = " + (elfHasArm ? "arm" : elfHasX86 ? "x86" : "mips") + ", " +
+ Log.i(TAG, "ELF ABI = " + (elfHasArm ? "arm" : elfHasX86 ? "x86" : "mips") + ", " +
(elfIs64bits ? "64bits" : "32bits"));
- Log.i(TAG, "arch = " + elf.att_arch);
- Log.i(TAG, "fpu = " + elf.att_fpu);
+ Log.i(TAG, "ELF arch = " + elf.att_arch);
+ Log.i(TAG, "ELF fpu = " + elf.att_fpu);
boolean hasNeon = false, hasFpu = false, hasArmV6 = false,
hasArmV7 = false, hasMips = false, hasX86 = false, is64bits = false;
float bogoMIPS = -1;
More information about the Android
mailing list