 Chromium Code Reviews
 Chromium Code Reviews Issue 2285683002:
  Add MIPS SIMD Arch (MSA) optimized MirrorRow function  (Closed)
    
  
    Issue 2285683002:
  Add MIPS SIMD Arch (MSA) optimized MirrorRow function  (Closed) 
  | 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 |