summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-08-03 16:55:17 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-08-03 16:55:17 +0000
commit46c14401e1ee1333976b58715f72c3f2a0af45f6 (patch)
tree41636bc27506fa8e7ff1efbda9f94876471b8d3e
parent1bc13cec194198116fc338b3fa5adc58d2dca4c1 (diff)
parente2df7d5a5f7d9a229ffe7f6aee4e2950a42beedd (diff)
downloadlibmpeg2-android13-mainline-go-tethering-release.tar.gz
Snap for 8902501 from e2df7d5a5f7d9a229ffe7f6aee4e2950a42beedd to mainline-go-tethering-releaseaml_go_tet_330914010android13-mainline-go-tethering-release
Change-Id: Ic02021cf00789b1f071118ad48f3980607f27ef0
-rw-r--r--common/impeg2_inter_pred.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/impeg2_inter_pred.c b/common/impeg2_inter_pred.c
index 019fa5c..7315664 100644
--- a/common/impeg2_inter_pred.c
+++ b/common/impeg2_inter_pred.c
@@ -459,7 +459,7 @@ void impeg2_mc_fullx_fully_8x8(UWORD8 *pu1_out,
for(i = 0; i < BLK_SIZE; i++)
{
- memcpy(pu1_out, pu1_ref, BLK_SIZE);
+ memmove(pu1_out, pu1_ref, BLK_SIZE);
pu1_ref += u4_ref_wid;
pu1_out += u4_out_wid;
}