| Index: media/base/cpu_features_x86.cc
|
| diff --git a/media/base/cpu_features_x86.cc b/media/base/cpu_features_x86.cc
|
| index bf7d05d13ddd182a3d32d1b42bc8bbee541ef12e..4fb9304d50cebb6f9b117672d82d9ee0fa8d168b 100644
|
| --- a/media/base/cpu_features_x86.cc
|
| +++ b/media/base/cpu_features_x86.cc
|
| @@ -48,6 +48,16 @@ static inline void getcpuid(int info_type, int info[4]) {
|
| }
|
| #endif
|
|
|
| +bool hasMMX() {
|
| + // TODO(hclam): Acutually checks it.
|
| + return true;
|
| +}
|
| +
|
| +bool hasSSE() {
|
| + // TODO(hclam): Actually checks it.
|
| + return true;
|
| +}
|
| +
|
| bool hasSSE2() {
|
| #if defined(ARCH_CPU_X86_64)
|
| /* All x86_64 machines have SSE2, so don't even bother checking. */
|
|
|