OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/modules/desktop_capture/differ_block.h" | 11 #include "webrtc/modules/desktop_capture/differ_block.h" |
12 | 12 |
13 #include <string.h> | 13 #include <string.h> |
14 | 14 |
15 #include "webrtc/typedefs.h" | 15 #include "webrtc/typedefs.h" |
16 #include "webrtc/modules/desktop_capture/differ_block_sse2.h" | 16 #include "webrtc/modules/desktop_capture/differ_vector_sse2.h" |
17 #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" | 17 #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 | 20 |
21 bool BlockDifference_C(const uint8_t* image1, | 21 namespace { |
22 const uint8_t* image2, | |
23 int stride) { | |
24 int width_bytes = kBlockSize * kBytesPerPixel; | |
25 | 22 |
26 for (int y = 0; y < kBlockSize; y++) { | 23 bool VectorDifference_C(const uint8_t* image1, |
27 if (memcmp(image1, image2, width_bytes) != 0) | 24 const uint8_t* image2) { |
| 25 return memcmp(image1, image2, kBlockSize * kBytesPerPixel) != 0; |
| 26 } |
| 27 |
| 28 } // namespace |
| 29 |
| 30 bool VectorDifference(const uint8_t* image1, const uint8_t* image2) { |
| 31 static bool (*diff_proc)(const uint8_t*, const uint8_t*) = nullptr; |
| 32 |
| 33 if (!diff_proc) { |
| 34 #if defined(WEBRTC_ARCH_ARM_FAMILY) || defined(WEBRTC_ARCH_MIPS_FAMILY) |
| 35 // For ARM and MIPS processors, always use C version. |
| 36 // TODO(hclam): Implement a NEON version. |
| 37 diff_proc = &VectorDifference_C; |
| 38 #else |
| 39 bool have_sse2 = WebRtc_GetCPUInfo(kSSE2) != 0; |
| 40 // For x86 processors, check if SSE2 is supported. |
| 41 if (have_sse2 && kBlockSize == 32) { |
| 42 diff_proc = &VectorDifference_SSE2_W32; |
| 43 } else if (have_sse2 && kBlockSize == 16) { |
| 44 diff_proc = &VectorDifference_SSE2_W16; |
| 45 } else { |
| 46 diff_proc = &VectorDifference_C; |
| 47 } |
| 48 #endif |
| 49 } |
| 50 |
| 51 return diff_proc(image1, image2); |
| 52 } |
| 53 |
| 54 bool BlockDifference(const uint8_t* image1, |
| 55 const uint8_t* image2, |
| 56 int height, |
| 57 int stride) { |
| 58 for (int i = 0; i < height; i++) { |
| 59 if (VectorDifference(image1, image2)) { |
28 return true; | 60 return true; |
| 61 } |
29 image1 += stride; | 62 image1 += stride; |
30 image2 += stride; | 63 image2 += stride; |
31 } | 64 } |
32 return false; | 65 return false; |
33 } | 66 } |
34 | 67 |
35 bool BlockDifference(const uint8_t* image1, | 68 bool BlockDifference(const uint8_t* image1, |
36 const uint8_t* image2, | 69 const uint8_t* image2, |
37 int stride) { | 70 int stride) { |
38 static bool (*diff_proc)(const uint8_t*, const uint8_t*, int) = NULL; | 71 return BlockDifference(image1, image2, kBlockSize, stride); |
39 | |
40 if (!diff_proc) { | |
41 #if defined(WEBRTC_ARCH_ARM_FAMILY) || defined(WEBRTC_ARCH_MIPS_FAMILY) | |
42 // For ARM and MIPS processors, always use C version. | |
43 // TODO(hclam): Implement a NEON version. | |
44 diff_proc = &BlockDifference_C; | |
45 #else | |
46 bool have_sse2 = WebRtc_GetCPUInfo(kSSE2) != 0; | |
47 // For x86 processors, check if SSE2 is supported. | |
48 if (have_sse2 && kBlockSize == 32) { | |
49 diff_proc = &BlockDifference_SSE2_W32; | |
50 } else if (have_sse2 && kBlockSize == 16) { | |
51 diff_proc = &BlockDifference_SSE2_W16; | |
52 } else { | |
53 diff_proc = &BlockDifference_C; | |
54 } | |
55 #endif | |
56 } | |
57 | |
58 return diff_proc(image1, image2, stride); | |
59 } | 72 } |
60 | 73 |
61 } // namespace webrtc | 74 } // namespace webrtc |
OLD | NEW |