Index: source/libvpx/vp8/encoder/encodeframe.c |
diff --git a/source/libvpx/vp8/encoder/encodeframe.c b/source/libvpx/vp8/encoder/encodeframe.c |
index 62d5d2d4eb6f3ee86e8ceacb577af27280c81997..378e902c6a4114cf96832ab90c9971085fb3e8b4 100644 |
--- a/source/libvpx/vp8/encoder/encodeframe.c |
+++ b/source/libvpx/vp8/encoder/encodeframe.c |
@@ -155,8 +155,8 @@ static void calc_av_activity( VP8_COMP *cpi, int64_t activity_sum ) |
cpi->common.MBs)); |
/* Copy map to sort list */ |
- vpx_memcpy( sortlist, cpi->mb_activity_map, |
- sizeof(unsigned int) * cpi->common.MBs ); |
+ memcpy( sortlist, cpi->mb_activity_map, |
+ sizeof(unsigned int) * cpi->common.MBs ); |
/* Ripple each value down to its correct position */ |
@@ -665,8 +665,7 @@ static void init_encode_frame_mb_context(VP8_COMP *cpi) |
x->mvc = cm->fc.mvc; |
- vpx_memset(cm->above_context, 0, |
- sizeof(ENTROPY_CONTEXT_PLANES) * cm->mb_cols); |
+ memset(cm->above_context, 0, sizeof(ENTROPY_CONTEXT_PLANES) * cm->mb_cols); |
/* Special case treatment when GF and ARF are not sensible options |
* for reference |
@@ -744,7 +743,7 @@ void vp8_encode_frame(VP8_COMP *cpi) |
const int num_part = (1 << cm->multi_token_partition); |
#endif |
- vpx_memset(segment_counts, 0, sizeof(segment_counts)); |
+ memset(segment_counts, 0, sizeof(segment_counts)); |
totalrate = 0; |
if (cpi->compressor_speed == 2) |
@@ -974,7 +973,7 @@ void vp8_encode_frame(VP8_COMP *cpi) |
int i; |
/* Set to defaults */ |
- vpx_memset(xd->mb_segment_tree_probs, 255 , sizeof(xd->mb_segment_tree_probs)); |
+ memset(xd->mb_segment_tree_probs, 255 , sizeof(xd->mb_segment_tree_probs)); |
tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + segment_counts[3]; |