Index: source/libvpx/vp9/encoder/vp9_ethread.c |
diff --git a/source/libvpx/vp9/encoder/vp9_ethread.c b/source/libvpx/vp9/encoder/vp9_ethread.c |
index 46814cdfd65eb44bb2701b15b2a319140851979f..8700ccdaecd8269d8a6f23659f804484e724638d 100644 |
--- a/source/libvpx/vp9/encoder/vp9_ethread.c |
+++ b/source/libvpx/vp9/encoder/vp9_ethread.c |
@@ -124,8 +124,8 @@ void vp9_encode_tiles_mt(VP9_COMP *cpi) { |
thread_data->td->rd_counts = cpi->td.rd_counts; |
} |
if (thread_data->td->counts != &cpi->common.counts) { |
- vpx_memcpy(thread_data->td->counts, &cpi->common.counts, |
- sizeof(cpi->common.counts)); |
+ memcpy(thread_data->td->counts, &cpi->common.counts, |
+ sizeof(cpi->common.counts)); |
} |
// Handle use_nonrd_pick_mode case. |