Browse code

SPARC: disable VIS for Niagara CPU

The Niagara/T1 supports only a subset of VIS, and even this is very slow.

Patch by Michael Kostylev <michael kostylev gmail>

Originally committed as revision 23045 to svn://svn.ffmpeg.org/ffmpeg/trunk

Michael Kostylev authored on 2010/05/07 19:17:25
Showing 1 changed files
... ...
@@ -2018,6 +2018,10 @@ elif enabled x86; then
2018 2018
 elif enabled sparc; then
2019 2019
 
2020 2020
     case $cpu in
2021
+        niagara)
2022
+            cpuflags="-mcpu=$cpu"
2023
+            disable vis
2024
+        ;;
2021 2025
         sparc64)
2022 2026
             cpuflags="-mcpu=v9"
2023 2027
         ;;