Index: source/libvpx/vp8/encoder/ratectrl.c |
diff --git a/source/libvpx/vp8/encoder/ratectrl.c b/source/libvpx/vp8/encoder/ratectrl.c |
index e30ad9e28383d236e56370ca47dc2821974996a6..25d7a4998cbd19af94863fd91f31ec5e9d9d1bbd 100644 |
--- a/source/libvpx/vp8/encoder/ratectrl.c |
+++ b/source/libvpx/vp8/encoder/ratectrl.c |
@@ -296,7 +296,7 @@ void vp8_setup_key_frame(VP8_COMP *cpi) |
vp8_default_coef_probs(& cpi->common); |
- vpx_memcpy(cpi->common.fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context)); |
+ memcpy(cpi->common.fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context)); |
{ |
int flag[2] = {1, 1}; |
vp8_build_component_cost_table(cpi->mb.mvcost, (const MV_CONTEXT *) cpi->common.fc.mvc, flag); |
@@ -305,9 +305,9 @@ void vp8_setup_key_frame(VP8_COMP *cpi) |
/* Make sure we initialize separate contexts for altref,gold, and normal. |
* TODO shouldn't need 3 different copies of structure to do this! |
*/ |
- vpx_memcpy(&cpi->lfc_a, &cpi->common.fc, sizeof(cpi->common.fc)); |
- vpx_memcpy(&cpi->lfc_g, &cpi->common.fc, sizeof(cpi->common.fc)); |
- vpx_memcpy(&cpi->lfc_n, &cpi->common.fc, sizeof(cpi->common.fc)); |
+ memcpy(&cpi->lfc_a, &cpi->common.fc, sizeof(cpi->common.fc)); |
+ memcpy(&cpi->lfc_g, &cpi->common.fc, sizeof(cpi->common.fc)); |
+ memcpy(&cpi->lfc_n, &cpi->common.fc, sizeof(cpi->common.fc)); |
cpi->common.filter_level = cpi->common.base_qindex * 3 / 8 ; |