Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: include/libyuv/cpu_id.h

Issue 2285683002: Add MIPS SIMD Arch (MSA) optimized MirrorRow function (Closed)
Patch Set: Changes as per review comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: include/libyuv/cpu_id.h
diff --git a/include/libyuv/cpu_id.h b/include/libyuv/cpu_id.h
index dfb7445e2f139225e563daf5b3482c8d0b759c22..70d7c3b71bc72216153d19e158adfc129560b4c4 100644
--- a/include/libyuv/cpu_id.h
+++ b/include/libyuv/cpu_id.h
@@ -42,6 +42,7 @@ static const int kCpuHasAVX3 = 0x2000;
// These flags are only valid on MIPS processors.
static const int kCpuHasMIPS = 0x10000;
static const int kCpuHasDSPR2 = 0x20000;
+static const int kCpuHasMSA = 0x30000;
fbarchard1 2016/09/14 01:48:04 please change to: static const int kCpuHasMSA = 0x
manojkumar.bhosale 2016/09/14 12:45:29 Done.
// Internal function used to auto-init.
LIBYUV_API

Powered by Google App Engine
This is Rietveld 408576698