[FFmpeg-devel] [PATCH v7 2/3] mips: do not disable any feature for generic cores

Vicente Olivert Riera Vincent.Riera at imgtec.com
Wed Feb 24 17:38:21 CET 2016


We don't know which features are available when the user selects a
generic core, so don't disable anything by default and let the user
decide.

Signed-off-by: Vicente Olivert Riera <Vincent.Riera at imgtec.com>
---
Changes v4 -> v7:
 - Nothing.

Changes v3 -> v4:
 - Minor change in the commit log: remove "let's".

Changes v2 -> v3:
 - Change the logic of this patch. Instead of removing the generic core,
   do not disable any feature and add a warning message to state that.
   The patch subject has also changed accordingly.

Changes v1 -> v2:
 - Nothing.

 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index ee0d00f..6167f7c 100755
--- a/configure
+++ b/configure
@@ -4251,8 +4251,8 @@ elif enabled mips; then
             esac
         ;;
         generic)
-            disable mips64r6
-            disable msa
+            # We do not disable anything. Is up to the user to disable
+            # the unwanted features.
         ;;
         *)
             # Unknown CPU. Disable everything.
-- 
2.4.10



More information about the ffmpeg-devel mailing list