Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-Android
Commits
176318b7
Commit
176318b7
authored
Jul 03, 2012
by
Edward Wang
Browse files
src: Be backwards compatible
parent
62e092c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
vlc-android/src/org/videolan/vlc/Util.java
View file @
176318b7
...
...
@@ -233,8 +233,10 @@ public class Util {
while
(
in
.
read
(
re
)
!=
-
1
){
if
(!
hasNeon
&&
new
String
(
re
).
contains
(
"neon"
))
hasNeon
=
true
;
if
(!
hasArmV7
&&
new
String
(
re
).
contains
(
"ARMv7"
))
if
(!
hasArmV7
&&
new
String
(
re
).
contains
(
"ARMv7"
))
{
hasArmV7
=
true
;
hasArmV6
=
true
;
/* Armv7 is backwards compatible to < v6 */
}
if
(!
hasArmV7
&&
!
hasArmV6
&&
new
String
(
re
).
contains
(
"ARMv6"
))
hasArmV6
=
true
;
if
(!
hasFpu
&&
new
String
(
re
).
contains
(
"vfp"
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment