MIPS: MIPS32r1: Optimization of function TransformOne. PATCH [4/6]

Change-Id: I5b98e2de940977538cf91bfa2128f4d1daa5c170
This commit is contained in:
Djordje Pesut
2013-12-25 12:16:01 +01:00
committed by Gerrit Code Review
parent 92d8fc7dd4
commit 04336fc7f8
8 changed files with 393 additions and 1 deletions

View File

@ -41,10 +41,15 @@ extern "C" {
#define WEBP_USE_NEON
#endif
#if defined(__mips__)
#define WEBP_USE_MIPS32
#endif
typedef enum {
kSSE2,
kSSE3,
kNEON
kNEON,
kMIPS32
} CPUFeature;
// returns true if the CPU supports the feature.
typedef int (*VP8CPUInfo)(CPUFeature feature);