#include "modules/desktop_capture/differ_block.h"
#include <string.h>
#include "rtc_base/system/arch.h"
#include "system_wrappers/include/cpu_features_wrapper.h"
#if defined(WEBRTC_ARCH_X86_FAMILY)
#include "modules/desktop_capture/differ_vector_sse2.h"
#endif
namespace webrtc {
namespace {
bool VectorDifference_C(const uint8_t* image1, const uint8_t* image2) { … }
}
bool VectorDifference(const uint8_t* image1, const uint8_t* image2) { … }
bool BlockDifference(const uint8_t* image1,
const uint8_t* image2,
int height,
int stride) { … }
bool BlockDifference(const uint8_t* image1, const uint8_t* image2, int stride) { … }
}