diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2016-08-05 13:42:44 +0530 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-10-06 21:30:53 +0200 |
commit | d2566b124af849d28eaedcba60c3a7ac280070ab (patch) | |
tree | 4fef3bb837f6f9698183852475550b5dfcd16a09 | |
parent | d89979e86b322210862987ebf1473fbd7cdc4c45 (diff) | |
download | ffmpeg-d2566b124af849d28eaedcba60c3a7ac280070ab.tar.gz |
Support for MIPS cpu P6600
Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 6803a298f4338c19c3032d2417c6e857eb6d95be)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -4336,7 +4336,7 @@ elif enabled mips; then enable mips32r2 disable msa ;; - p5600|i6400) + p5600|i6400|p6600) disable mipsdsp disable mipsdspr2 ;; @@ -4401,6 +4401,10 @@ elif enabled mips; then enable mips64r6 check_cflags "-mtune=i6400 -mabi=64" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops" && check_ldflags "-mabi=64" ;; + p6600) + enable mips64r6 + check_cflags "-mtune=p6600 -mabi=64" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops" && check_ldflags "-mabi=64" + ;; esac else # We do not disable anything. Is up to the user to disable the unwanted features. |